summaryrefslogtreecommitdiff
path: root/core/java/android
diff options
context:
space:
mode:
authorkopriva <kopriva@google.com>2018-09-29 15:22:41 -0700
committerkopriva <kopriva@google.com>2018-09-29 15:22:41 -0700
commitfdb0bffb0b17808db6fa6b5bac48f4405fb0ced2 (patch)
tree3a85b84dce743d72a1bcee08dbfc0af377522b73 /core/java/android
parent0712cf3e18ff0a5d0c82a598e0c1ece06b9820f2 (diff)
docs: bug 112769174, unclosed parentheses
Test: make ds-docs Bug: 112769174 Change-Id: I3322e06bf3b4624a7ed09dc476bdfe715ea0a27a Exempt-From-Owner-Approval: Docs-only change
Diffstat (limited to 'core/java/android')
-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 0fb85d25cf1a..1925f431b3b6 100644
--- a/core/java/android/app/Activity.java
+++ b/core/java/android/app/Activity.java
@@ -393,7 +393,7 @@ import java.util.List;
* <td>The final call you receive before your
* activity is destroyed. This can happen either because the
* activity is finishing (someone called {@link Activity#finish} on
- * it, or because the system is temporarily destroying this
+ * it), or because the system is temporarily destroying this
* instance of the activity to save space. You can distinguish
* between these two scenarios with the {@link
* Activity#isFinishing} method.</td>
@@ -1937,7 +1937,7 @@ public class Activity extends ContextThemeWrapper
/**
* Perform any final cleanup before an activity is destroyed. This can
* happen either because the activity is finishing (someone called
- * {@link #finish} on it, or because the system is temporarily destroying
+ * {@link #finish} on it), or because the system is temporarily destroying
* this instance of the activity to save space. You can distinguish
* between these two scenarios with the {@link #isFinishing} method.
*