diff options
| author | TreeHugger Robot <treehugger-gerrit@google.com> | 2018-03-29 23:11:32 +0000 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2018-03-29 23:11:32 +0000 |
| commit | 46e83ebf27a73fb6d3eb520ae605ae374dc840d5 (patch) | |
| tree | 4a3003fa536b9d145a17aea6933f1c727556dd7e /core/java | |
| parent | 0f57f60b7c6c7fd571e7228a4e2698efab1b706c (diff) | |
| parent | 8ce43a5e701de4ddb2f1e281b946d5ea96711d06 (diff) | |
Merge "Minor javadoc fixes." into pi-dev
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/service/autofill/AutofillFieldClassificationService.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/core/java/android/service/autofill/AutofillFieldClassificationService.java b/core/java/android/service/autofill/AutofillFieldClassificationService.java index 99d45f40c26a..1cd76d2e9ec9 100644 --- a/core/java/android/service/autofill/AutofillFieldClassificationService.java +++ b/core/java/android/service/autofill/AutofillFieldClassificationService.java @@ -41,11 +41,11 @@ import java.util.List; * * <p>A field classification score is a {@code float} representing how well an * {@link AutofillValue} filled matches a expected value predicted by an autofill service - * —a full-match is {@code 1.0} (representing 100%), while a full mismatch is {@code 0.0}. + * —a full match is {@code 1.0} (representing 100%), while a full mismatch is {@code 0.0}. * - * <p>The exact score depends on the algorithm used to calculate it— the service must provide + * <p>The exact score depends on the algorithm used to calculate it—the service must provide * at least one default algorithm (which is used when the algorithm is not specified or is invalid), - * but it could provide more (in which case the algorithm name should be specifiied by the caller + * but it could provide more (in which case the algorithm name should be specified by the caller * when calculating the scores). * * {@hide} @@ -115,15 +115,15 @@ public abstract class AutofillFieldClassificationService extends Service { * * <p>A field classification score is a {@code float} representing how well an * {@link AutofillValue} filled matches a expected value predicted by an autofill service - * —a full-match is {@code 1.0} (representing 100%), while a full mismatch is {@code 0.0}. + * —a full match is {@code 1.0} (representing 100%), while a full mismatch is {@code 0.0}. * - * <p>The exact score depends on the algorithm used to calculate it— the service must + * <p>The exact score depends on the algorithm used to calculate it—the service must * provide at least one default algorithm (which is used when the algorithm is not specified * or is invalid), but it could provide more (in which case the algorithm name should be - * specifiied by the caller when calculating the scores). + * specified by the caller when calculating the scores). * * <p>For example, if the service provides an algorithm named {@code EXACT_MATCH} that - * returns {@code 1.0} if all characters in match or {@code 0.0} otherwise, a call to: + * returns {@code 1.0} if all characters match or {@code 0.0} otherwise, a call to: * * <pre> * service.onGetScores("EXACT_MATCH", null, |
