diff options
| author | 2017-09-26 13:05:36 -0700 | |
|---|---|---|
| committer | 2017-09-26 13:06:41 -0700 | |
| commit | a821efeeb72bd4658feeabf7370782a33ad6b300 (patch) | |
| tree | 004d132319cf48b03e0f5b4660acb0df50ec6be5 | |
| parent | 8e5e30c5eb1209291de2ef2462ef3905a5744242 (diff) | |
Added missing quote (") on anchor tag.
Test: 'm -j doc-comment-check-docs' then verify resulting HTML
Fixes: 66958057
Change-Id: Ie5914a5af191866404b6fbf244c78e145c59a8b1
| -rw-r--r-- | core/java/android/service/autofill/AutofillService.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/service/autofill/AutofillService.java b/core/java/android/service/autofill/AutofillService.java index 3e08dcf2b919..045c83304097 100644 --- a/core/java/android/service/autofill/AutofillService.java +++ b/core/java/android/service/autofill/AutofillService.java @@ -305,7 +305,7 @@ import com.android.internal.os.SomeArgs; * <li>Use the {@link android.app.assist.AssistStructure.ViewNode#getWebDomain()} to get the * source of the document. * <li>Get the canonical domain using the - * <a href="https://publicsuffix.org/>Public Suffix List</a> (see example below). + * <a href="https://publicsuffix.org/">Public Suffix List</a> (see example below). * <li>Use <a href="https://developers.google.com/digital-asset-links/">Digital Asset Links</a> * to obtain the package name and certificate fingerprint of the package corresponding to * the canonical domain. |