diff options
author | Kris Giesing <kgiesing@google.com> | 2014-12-16 17:23:15 -0800 |
---|---|---|
committer | Kris Giesing <kgiesing@google.com> | 2014-12-16 17:23:15 -0800 |
commit | 8b6216d31415e9b9377570ebc5b0727a16e36054 (patch) | |
tree | c152f4b2c49e20562cc0feaa7c7f2ee1b04df4b1 /core/java/android/app | |
parent | bdcb0e52654ea1ec86d90e7e301490f9f4d80c5a (diff) | |
download | frameworks_base-8b6216d31415e9b9377570ebc5b0727a16e36054.zip frameworks_base-8b6216d31415e9b9377570ebc5b0727a16e36054.tar.gz frameworks_base-8b6216d31415e9b9377570ebc5b0727a16e36054.tar.bz2 |
Fix minor spelling and grammar errors in public JavaDoc
b/18777215
Change-Id: I2403db4fb94144f0a71243c6b74076482defc9a4
Diffstat (limited to 'core/java/android/app')
-rw-r--r-- | core/java/android/app/Activity.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 8cee587..bf0104c 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -362,7 +362,7 @@ import java.util.HashMap; * * <p>Note the "Killable" column in the above table -- for those methods that * are marked as being killable, after that method returns the process hosting the - * activity may killed by the system <em>at any time</em> without another line + * activity may be killed by the system <em>at any time</em> without another line * of its code being executed. Because of this, you should use the * {@link #onPause} method to write any persistent data (such as user edits) * to storage. In addition, the method |