aboutsummaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorAndrew Solovay <asolovay@google.com>2018-10-10 12:35:36 -0700
committerAndrew Solovay <asolovay@google.com>2018-10-11 02:15:54 +0000
commit630b966ec8e8b8d3970fc0bbd8fe0319af6dfccd (patch)
tree3accc97cd27b3761cb3ca889ced003ed950adb2a /content
parentb84837bc43b3f244436a7ba7a660d8b1443b085e (diff)
downloadsupport-630b966ec8e8b8d3970fc0bbd8fe0319af6dfccd.tar.gz
docs: Fixing badly formatted @links
Searched for live reference docs that contained the actual text "@link" (instead of the cross-reference that's supposed to be turned into) and fixed the problem in the underling javadoc comment. Also fixed a couple of other obvious formatting errors while I had the files open. Modified files staged to: http://go/dac-stage/reference/androidx/contentpager/content/ContentPager.html http://go/dac-stage/reference/androidx/core/app/NotificationCompat.html http://go/dac-stage/reference/androidx/core/app/RemoteInput.html http://go/dac-stage/reference/androidx/fragment/app/Fragment.html http://go/dac-stage/reference/androidx/leanback/media/PlaybackGlue.html http://go/dac-stage/reference/androidx/lifecycle/LiveDataReactiveStreams.html http://go/dac-stage/reference/androidx/media2/MediaController2.html http://go/dac-stage/reference/androidx/webkit/ServiceWorkerClientCompat.html Bug: 117558703 Test: ./gradlew disttipOfTreeDocs -PofflineDocs=false Change-Id: I7c8e6162740b3ce90595841a03230314b5dcd495 Exempt-From-Owner-Approval: Docs-only change
Diffstat (limited to 'content')
-rw-r--r--content/src/main/java/androidx/contentpager/content/ContentPager.java10
1 files changed, 6 insertions, 4 deletions
diff --git a/content/src/main/java/androidx/contentpager/content/ContentPager.java b/content/src/main/java/androidx/contentpager/content/ContentPager.java
index efcc73ffed9..bf4cf49bd81 100644
--- a/content/src/main/java/androidx/contentpager/content/ContentPager.java
+++ b/content/src/main/java/androidx/contentpager/content/ContentPager.java
@@ -56,18 +56,20 @@ import java.util.Set;
*
* <p>The list of terms used in this document:
*
- * <ol>"The provider" is a {@link android.content.ContentProvider} supplying data identified
+ * <ul>
+ * <li>"The provider" is a {@link android.content.ContentProvider} supplying data identified
* by a specific content {@link Uri}. A provider is the source of data, and for the sake of
* this documents, the provider resides in a remote process.
- * <ol>"supports paging" A provider supports paging when it returns a pre-paged {@link Cursor}
- * that honors the paging contract. See @link ContentResolver#QUERY_ARG_OFFSET} and
+ * <li>"supports paging" A provider supports paging when it returns a pre-paged {@link Cursor}
+ * that honors the paging contract. See {@link ContentResolver#QUERY_ARG_OFFSET} and
* {@link ContentResolver#QUERY_ARG_LIMIT} for details on the contract.
- * <ol>"CursorWindow swaps" The process by which new data is loaded into a shared memory
+ * <li>"CursorWindow swaps" The process by which new data is loaded into a shared memory
* via a CursorWindow instance. This is a prominent contributor to UI jank in applications
* that use Cursor as backing data for UI elements like {@code RecyclerView}.
*
+ * </ul>
* <p><b>Details</b>
*
* <p>Data will be loaded from a content uri in one of two ways, depending on the runtime