diff options
| author | 2021-06-03 10:31:15 +0200 | |
|---|---|---|
| committer | 2021-06-03 10:31:15 +0200 | |
| commit | 90c63acfa0ddd80067059646f5d083b70f696329 (patch) | |
| tree | 646c5fab3e067561c412c1d6f5f21ef7f34c2826 | |
| parent | 6890be92181922ef75736ed3da72cd3979902159 (diff) | |
Fix Javadoc typo
HTML ol element is used to declare an ordered list, not a list item.
Change-Id: I1fac2f236ce40effb54fdead01c99729d4ef15b4
| -rw-r--r-- | core/java/android/accessibilityservice/AccessibilityService.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/accessibilityservice/AccessibilityService.java b/core/java/android/accessibilityservice/AccessibilityService.java index ac00a042b79e..f1ba8dc909d2 100644 --- a/core/java/android/accessibilityservice/AccessibilityService.java +++ b/core/java/android/accessibilityservice/AccessibilityService.java @@ -100,14 +100,14 @@ import java.util.function.Consumer; * An accessibility is declared as any other service in an AndroidManifest.xml, but it * must do two things: * <ul> - * <ol> + * <li> * Specify that it handles the "android.accessibilityservice.AccessibilityService" * {@link android.content.Intent}. - * </ol> - * <ol> + * </li> + * <li> * Request the {@link android.Manifest.permission#BIND_ACCESSIBILITY_SERVICE} permission to * ensure that only the system can bind to it. - * </ol> + * </li> * </ul> * If either of these items is missing, the system will ignore the accessibility service. * Following is an example declaration: |