diff options
| -rw-r--r-- | core/java/android/app/admin/DeviceAdminReceiver.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/app/admin/DeviceAdminReceiver.java b/core/java/android/app/admin/DeviceAdminReceiver.java index 5a356d9d4a6d..d0d98c9fb10f 100644 --- a/core/java/android/app/admin/DeviceAdminReceiver.java +++ b/core/java/android/app/admin/DeviceAdminReceiver.java @@ -659,13 +659,13 @@ public class DeviceAdminReceiver extends BroadcastReceiver { * managed provisioning. * * <p>When provisioning of a managed profile is complete, the managed profile is hidden until - * the profile owner calls {DevicePolicyManager#setProfileEnabled(ComponentName admin)}. + * the profile owner calls {@link DevicePolicyManager#setProfileEnabled(ComponentName admin)}. * Typically a profile owner will enable the profile when it has finished any additional setup - * such as adding an account by using the {@link AccountManager} and calling apis to bring the + * such as adding an account by using the {@link AccountManager} and calling APIs to bring the * profile into the desired state. * * <p> Note that provisioning completes without waiting for any server interactions, so the - * profile owner needs to wait for data to be available if required (e.g. android device ids or + * profile owner needs to wait for data to be available if required (e.g. Android device IDs or * other data that is set as a result of server interactions). * * <p>From version {@link android.os.Build.VERSION_CODES#O}, when managed provisioning has |