diff options
author | 2024-11-18 23:52:22 +0000 | |
---|---|---|
committer | 2024-11-19 17:05:11 +0000 | |
commit | 95ec53eef39057b69255a261a2d6199b71cd169a (patch) | |
tree | bfc471b1e9832d633bc5f6049f09102212c87a00 | |
parent | 8a76348356ccde7858e4833a37a1343967440976 (diff) |
docs: Fix typo in description ("you" -> "your")
Fixing a typo (should be "if your app targets"), and also made a slight text fix (changed "...targets M and above" to "targets M or higher").
No change to code, docs-only fix.
Flag: DOCS_ONLY
Test: [ABTD docs build]
Fixes: 379085273
Change-Id: Iae7c3b1ac6060742eb243b6c714a17091397b7a7
-rw-r--r-- | core/java/android/content/Intent.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 88533049f970..3d2d487b9d06 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1211,8 +1211,8 @@ public class Intent implements Parcelable, Cloneable { * {@link android.telecom.TelecomManager#placeCall(Uri, Bundle)} to place calls rather than * relying on this intent. * - * <p>Note: if you app targets {@link android.os.Build.VERSION_CODES#M M} - * and above and declares as using the {@link android.Manifest.permission#CALL_PHONE} + * <p>Note: If your app targets {@link android.os.Build.VERSION_CODES#M M} + * or higher and declares as using the {@link android.Manifest.permission#CALL_PHONE} * permission which is not granted, then attempting to use this action will * result in a {@link java.lang.SecurityException}. */ |