summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Felipe Leme <felipeal@google.com> 2017-08-01 19:33:25 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2017-08-01 19:33:25 +0000
commit7fecc73f52f5b48697ec1839a63ce547f6a2cd19 (patch)
tree8aa72a8dcb9b3c8f2e21bf43fae4e30f002e3421
parentfb80072f9926ea74f2e957fc86eb935ac753e01d (diff)
parentc0c6ab4ac1500d2e15f1b28e27b0dd469bed1a6c (diff)
Merge "Minor Autofill javadoc fix." into oc-mr1-dev
-rw-r--r--core/java/android/service/autofill/FillResponse.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/java/android/service/autofill/FillResponse.java b/core/java/android/service/autofill/FillResponse.java
index 95e8c88a12f4..65b9cb2d2b50 100644
--- a/core/java/android/service/autofill/FillResponse.java
+++ b/core/java/android/service/autofill/FillResponse.java
@@ -210,9 +210,9 @@ public final class FillResponse implements Parcelable {
* <p><b>Note: </b> on Android {@link android.os.Build.VERSION_CODES#O}, the total number of
* datasets is limited by the Binder transaction size, so it's recommended to keep it
* small (in the range of 10-20 at most) and use pagination by adding a fake
- * {@link Dataset.Builder#setAuthentication(IntentSender) authenticated} at the end with
- * a presentation string like "Next 10" that would return a new {@link FillResponse} with
- * the next 10 datasets, and so on. This limitation was lifted on
+ * {@link Dataset.Builder#setAuthentication(IntentSender) authenticated dataset} at the end
+ * with a presentation string like "Next 10" that would return a new {@link FillResponse}
+ * with the next 10 datasets, and so on. This limitation was lifted on
* Android {@link android.os.Build.VERSION_CODES#O_MR1}, although the Binder transaction
* size can still be reached if each dataset itself is too big.
*