diff options
| author | 2024-02-01 17:32:17 +0000 | |
|---|---|---|
| committer | 2024-02-01 19:34:46 +0000 | |
| commit | ed7101ae8ddab93b10d1afa58ceaf1c9c9dd437f (patch) | |
| tree | 2eaa2ba242cb77a8b83048432a0af588e1cf625a | |
| parent | 11a67a20ccd598981ac1d451957650a51669950e (diff) | |
Small typo fix
Change-Id: Ic45b1c59d06ebf5a956f469f7e77a88ffd627949
| -rw-r--r-- | core/java/android/content/ContentProvider.java | 2 | ||||
| -rw-r--r-- | core/java/android/content/ContentResolver.java | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/content/ContentProvider.java b/core/java/android/content/ContentProvider.java index 2200af679531..c5356fe4f49b 100644 --- a/core/java/android/content/ContentProvider.java +++ b/core/java/android/content/ContentProvider.java @@ -182,7 +182,7 @@ public abstract class ContentProvider implements ContentInterface, ComponentCall * * @param context A Context object which should be some mock instance (like the * instance of {@link android.test.mock.MockContext}). - * @param readPermission The read permision you want this instance should have in the + * @param readPermission The read permission you want this instance should have in the * test, which is available via {@link #getReadPermission()}. * @param writePermission The write permission you want this instance should have * in the test, which is available via {@link #getWritePermission()}. diff --git a/core/java/android/content/ContentResolver.java b/core/java/android/content/ContentResolver.java index b2cd7e90f291..a97ca0abb7b4 100644 --- a/core/java/android/content/ContentResolver.java +++ b/core/java/android/content/ContentResolver.java @@ -387,7 +387,7 @@ public abstract class ContentResolver implements ContentInterface { * {@link Bundle} under {@link #EXTRA_HONORED_ARGS}. * <li>When querying a provider, where no QUERY_ARG_SQL* otherwise exists in * the arguments {@link Bundle}, the Content framework will attempt to - * synthesize an QUERY_ARG_SQL* argument using the corresponding + * synthesize a QUERY_ARG_SQL* argument using the corresponding * QUERY_ARG_SORT* values. */ public static final String QUERY_ARG_SORT_COLUMNS = "android:query-arg-sort-columns"; |