docs: Fix phrasing for BroadcastReceiver.PendingResult am: a3b64f08b7

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23879894

Change-Id: Ie58922ec6dcf4908e18590dd920a9a0ca52c92aa
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
Andrew Solovay
2023-06-30 23:05:45 +00:00
committed by Automerger Merge Worker

View File

@@ -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()}.