summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andrew Solovay <asolovay@google.com> 2023-06-30 23:45:36 +0000
committer Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> 2023-06-30 23:45:36 +0000
commitc008ef4f65cb66e31d36445945b606b163c4233e (patch)
treeb6674ab19f32a5cfe76dd955952bdc0cf7c5a0df
parent84e704f5d81fbdedaf271d5674be3411a368bce1 (diff)
parent59b539b4e08082c8b7203736812bf3be95fe46f8 (diff)
docs: Fix phrasing for BroadcastReceiver.PendingResult am: a3b64f08b7 am: 59b539b4e0
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23879894 Change-Id: I0b7a337761ccffbf87c4975e342224002b96b4e0 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--core/java/android/content/BroadcastReceiver.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/content/BroadcastReceiver.java b/core/java/android/content/BroadcastReceiver.java
index 3d76b28a3ccc..d7195a76d873 100644
--- a/core/java/android/content/BroadcastReceiver.java
+++ b/core/java/android/content/BroadcastReceiver.java
@@ -65,7 +65,7 @@ public abstract class BroadcastReceiver {
* thread of your app.
*
* <p>Note on threading: the state inside of this class is not itself
- * thread-safe, however you can use it from any thread if you properly
+ * thread-safe. However, you can use it from any thread if you make
* sure that you do not have races. Typically this means you will hand
* the entire object to another thread, which will be solely responsible
* for setting any results and finally calling {@link #finish()}.