summaryrefslogtreecommitdiffstats
path: root/docs/html/training
diff options
context:
space:
mode:
authorKatie McCormick <kmccormick@google.com>2012-08-29 13:37:01 -0700
committerKatie McCormick <kmccormick@google.com>2012-08-29 13:37:01 -0700
commit6dd530ff8d8231e8899028ba21d00e0f2c867623 (patch)
treea54656c124c031d24dbb23c1001e98dbcbee3708 /docs/html/training
parentcf9e9d627367d310fb910a052dda1e020748a94c (diff)
downloadframeworks_base-6dd530ff8d8231e8899028ba21d00e0f2c867623.zip
frameworks_base-6dd530ff8d8231e8899028ba21d00e0f2c867623.tar.gz
frameworks_base-6dd530ff8d8231e8899028ba21d00e0f2c867623.tar.bz2
Doc update: Fix typo.
Change-Id: Idc968ed864b28a65ae71fd1f1336e769ae445f88
Diffstat (limited to 'docs/html/training')
-rw-r--r--docs/html/training/basics/activity-lifecycle/recreating.jd2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/html/training/basics/activity-lifecycle/recreating.jd b/docs/html/training/basics/activity-lifecycle/recreating.jd
index 3bbf0bb..8c7126a 100644
--- a/docs/html/training/basics/activity-lifecycle/recreating.jd
+++ b/docs/html/training/basics/activity-lifecycle/recreating.jd
@@ -51,7 +51,7 @@ the user rotates the screen. When the screen changes orientation, the system des
the foreground activity because the screen configuration has changed and your activity might need to
load alternative resources (such as the layout).</p>
-<p>By default, the system uses the {@link android.os.Bundle} instance state to saves information
+<p>By default, the system uses the {@link android.os.Bundle} instance state to save information
about each {@link android.view.View} object in your activity layout (such as the text value entered
into an {@link android.widget.EditText} object). So, if your activity instance is destroyed and
recreated, the state of the layout is automatically restored to its previous state. However, your