diff options
author | John Spurlock <jspurlock@google.com> | 2014-03-10 16:52:11 -0400 |
---|---|---|
committer | John Spurlock <jspurlock@google.com> | 2014-03-10 16:52:11 -0400 |
commit | 925b85eae8ee605ef33bb8cca1018e474cef402a (patch) | |
tree | cb26e00304d09eb22d6a2bb2a807840e46a09083 | |
parent | 9182e5f848a2865a233ed143d56ad8dae599d875 (diff) | |
download | frameworks_base-925b85eae8ee605ef33bb8cca1018e474cef402a.zip frameworks_base-925b85eae8ee605ef33bb8cca1018e474cef402a.tar.gz frameworks_base-925b85eae8ee605ef33bb8cca1018e474cef402a.tar.bz2 |
Fix doc typos in AppOpsManager.java
Change-Id: I3c930a2afce48c57570681a95595149df5158053
-rw-r--r-- | core/java/android/app/AppOpsManager.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/app/AppOpsManager.java b/core/java/android/app/AppOpsManager.java index 183927b..286bde0 100644 --- a/core/java/android/app/AppOpsManager.java +++ b/core/java/android/app/AppOpsManager.java @@ -36,7 +36,7 @@ import android.os.RemoteException; * API for interacting with "application operation" tracking. * * <p>This API is not generally intended for third party application developers; most - * features are only available to system applicatins. Obtain an instance of it through + * features are only available to system applications. Obtain an instance of it through * {@link Context#getSystemService(String) Context.getSystemService} with * {@link Context#APP_OPS_SERVICE Context.APP_OPS_SERVICE}.</p> */ @@ -878,7 +878,7 @@ public class AppOpsManager { } /** - * Like {@link #checkOp but instead of throwing a {@link SecurityException} it + * Like {@link #checkOp} but instead of throwing a {@link SecurityException} it * returns {@link #MODE_ERRORED}. */ public int checkOpNoThrow(String op, int uid, String packageName) { |