Skip to content

Commit d0c66f6

Browse files
Pin TingAndroid (Google) Code Review
authored andcommitted
Merge "Fix javadoc." into jb-dev
2 parents 3fd4a38 + 14a9310 commit d0c66f6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

core/java/android/app/Activity.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1242,7 +1242,7 @@ private void saveManagedDialogs(Bundle outState) {
12421242
* making sure nothing is lost if there are not enough resources to start
12431243
* the new activity without first killing this one. This is also a good
12441244
* place to do things like stop animations and other things that consume a
1245-
* noticeable mount of CPU in order to make the switch to the next activity
1245+
* noticeable amount of CPU in order to make the switch to the next activity
12461246
* as fast as possible, or to close resources that are exclusive access
12471247
* such as the camera.
12481248
*

core/java/android/os/ConditionVariable.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
* block() will not block, and instead return immediately.
2727
*
2828
* <p>
29-
* This class uses itself is at the object to wait on, so if you wait()
29+
* This class uses itself as the object to wait on, so if you wait()
3030
* or notify() on a ConditionVariable, the results are undefined.
3131
*/
3232
public class ConditionVariable

core/java/android/os/HandlerThread.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public HandlerThread(String name, int priority) {
4242
}
4343

4444
/**
45-
* Call back method that can be explicitly over ridden if needed to execute some
45+
* Call back method that can be explicitly overridden if needed to execute some
4646
* setup before Looper loops.
4747
*/
4848
protected void onLooperPrepared() {

0 commit comments

Comments
 (0)