diff --git a/core/java/android/content/Intent.java b/core/java/android/content/Intent.java index 5cf83acd9a753..adf9ff32c4ece 100644 --- a/core/java/android/content/Intent.java +++ b/core/java/android/content/Intent.java @@ -1954,8 +1954,8 @@ public class Intent implements Parcelable, Cloneable { /** * Activity action: Launch UI to show information about the usage - * of a given permission. This action would be handled by apps that - * want to show details about how and why given permission is being + * of a given permission group. This action would be handled by apps that + * want to show details about how and why given permission group is being * used. *

* Important:You must protect the activity that handles @@ -1965,7 +1965,7 @@ public class Intent implements Parcelable, Cloneable { * activities that are not properly protected. * *

- * Input: {@code android.intent.extra.PERMISSION_NAME} specifies the permission + * Input: {@link android.Manifest.permission_group} specifies the permission group * for which the launched UI would be targeted. *

*