diff options
| author | 2023-07-01 00:29:46 +0000 | |
|---|---|---|
| committer | 2023-07-01 00:29:46 +0000 | |
| commit | bf8570523374ae66ede06b6f7716d49243183f12 (patch) | |
| tree | 62c5d710a69997ddc6662d41b763b27dec732c5d | |
| parent | bc3c60eb7d9bd80962810e1d722f1cb38ef04c09 (diff) | |
| parent | a267ce46bb70231113722bc13c0fc392d3ed95e8 (diff) | |
docs: Fix phrasing for BroadcastReceiver.PendingResult am: a3b64f08b7 am: 02cab8b81b am: a267ce46bb
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23879894
Change-Id: I847bc22d3bf02a39db0408cd401d74d03f62cbbe
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | core/java/android/content/BroadcastReceiver.java | 2 |
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()}. |