diff options
| -rw-r--r-- | core/java/android/app/Activity.java | 2 | ||||
| -rw-r--r-- | core/java/android/os/ConditionVariable.java | 2 | ||||
| -rw-r--r-- | core/java/android/os/HandlerThread.java | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/Activity.java b/core/java/android/app/Activity.java index 8d6a49638d30..29d96feb790c 100644 --- a/core/java/android/app/Activity.java +++ b/core/java/android/app/Activity.java @@ -1242,7 +1242,7 @@ public class Activity extends ContextThemeWrapper * making sure nothing is lost if there are not enough resources to start * the new activity without first killing this one. This is also a good * place to do things like stop animations and other things that consume a - * noticeable mount of CPU in order to make the switch to the next activity + * noticeable amount of CPU in order to make the switch to the next activity * as fast as possible, or to close resources that are exclusive access * such as the camera. * diff --git a/core/java/android/os/ConditionVariable.java b/core/java/android/os/ConditionVariable.java index 95a9259551e3..07b221c81dba 100644 --- a/core/java/android/os/ConditionVariable.java +++ b/core/java/android/os/ConditionVariable.java @@ -26,7 +26,7 @@ package android.os; * block() will not block, and instead return immediately. * * <p> - * This class uses itself is at the object to wait on, so if you wait() + * This class uses itself as the object to wait on, so if you wait() * or notify() on a ConditionVariable, the results are undefined. */ public class ConditionVariable diff --git a/core/java/android/os/HandlerThread.java b/core/java/android/os/HandlerThread.java index d61b3b4a7bbc..daf1f5933520 100644 --- a/core/java/android/os/HandlerThread.java +++ b/core/java/android/os/HandlerThread.java @@ -42,7 +42,7 @@ public class HandlerThread extends Thread { } /** - * Call back method that can be explicitly over ridden if needed to execute some + * Call back method that can be explicitly overridden if needed to execute some * setup before Looper loops. */ protected void onLooperPrepared() { |