summaryrefslogtreecommitdiff
path: root/core/java/android/app/Activity.java
diff options
context:
space:
mode:
authorKen Wakasa <kwakasa@google.com>2012-03-09 19:56:35 +0900
committerKen Wakasa <kwakasa@google.com>2012-03-09 22:48:43 +0900
commitf76a50ce8fdc6aea22cabc77b2977a1a15a79630 (patch)
tree52a02b4db9b5acbef944d29c251bf2eae40c625b /core/java/android/app/Activity.java
parenta64890a02e5561d73da57695dcfc6b35ca05c321 (diff)
Fix obvious typos under frameworks/base/core
Change-Id: Ia5fc3db1bb51824e7523885553be926bcc42d736
Diffstat (limited to 'core/java/android/app/Activity.java')
-rw-r--r--core/java/android/app/Activity.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java
index f8954315630b..599487dc8781 100644
--- a/core/java/android/app/Activity.java
+++ b/core/java/android/app/Activity.java
@@ -203,8 +203,8 @@ import java.util.HashMap;
* with the user. Between these two methods you can maintain resources that
* are needed to show the activity to the user. For example, you can register
* a {@link android.content.BroadcastReceiver} in onStart() to monitor for changes
- * that impact your UI, and unregister it in onStop() when the user an no
- * longer see what you are displaying. The onStart() and onStop() methods
+ * that impact your UI, and unregister it in onStop() when the user no
+ * longer sees what you are displaying. The onStart() and onStop() methods
* can be called multiple times, as the activity becomes visible and hidden
* to the user.
*