summaryrefslogtreecommitdiffstats
path: root/docs/html/training/basics
diff options
context:
space:
mode:
authorQuddus Chong <quddusc@google.com>2012-04-23 17:29:57 -0700
committerQuddus Chong <quddusc@google.com>2012-04-23 17:29:57 -0700
commit4fd13fda636a3a5ab247367da23ae1527a66d8aa (patch)
tree664206ca811d2fd274675be15b0184d5c5daf178 /docs/html/training/basics
parentd5955b02365d35f3f9e8fc261fc22e6d2ac9f6bf (diff)
downloadframeworks_base-4fd13fda636a3a5ab247367da23ae1527a66d8aa.zip
frameworks_base-4fd13fda636a3a5ab247367da23ae1527a66d8aa.tar.gz
frameworks_base-4fd13fda636a3a5ab247367da23ae1527a66d8aa.tar.bz2
docs: Fixed typos.
Change-Id: I260ab8c5ea797e5bd8b9b2fcbd0d5dc6e5e8bc7c
Diffstat (limited to 'docs/html/training/basics')
-rw-r--r--docs/html/training/basics/activity-lifecycle/starting.jd6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/html/training/basics/activity-lifecycle/starting.jd b/docs/html/training/basics/activity-lifecycle/starting.jd
index d3266ae..1d328c7 100644
--- a/docs/html/training/basics/activity-lifecycle/starting.jd
+++ b/docs/html/training/basics/activity-lifecycle/starting.jd
@@ -79,9 +79,9 @@ ensures your app behaves well in several ways, including that it:</p>
while using your app.</li>
<li>Does not consume valuable system resources when the user is not actively using
it.</li>
- <li>Does not loose the user's progress if they leave your app and return to it at a
+ <li>Does not lose the user's progress if they leave your app and return to it at a
later time.</li>
- <li>Does not crash of loose the user's progress when the screen rotates between
+ <li>Does not crash or lose the user's progress when the screen rotates between
landscape and portrait orientation.</li>
</ul>
@@ -257,7 +257,7 @@ activity until they switch to a different activity.</p>
<h2 id="Destroy">Destroy the Activity</h2>
<p>While the activity's first lifecycle callback is {@link android.app.Activity#onCreate
-onCreate()}, it's very last callback is {@link android.app.Activity#onDestroy}. The system calls
+onCreate()}, its very last callback is {@link android.app.Activity#onDestroy}. The system calls
this method on your activity as the final
signal that your activity instance is being completely removed from the system memory.</p>