From 4ea9240adb769adbc93f74451b6ff8652eb7d4ad Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Fri, 17 Nov 2017 18:48:13 -0800 Subject: [PATCH] WebView: misc docs changes for WebSettings No change to logic, only docs changes. This is mostly just formatting changes to documentation. Changes fall into a few categories: * Linkify ({@link}) or codify ({@code}) * Spelling errors Test: make docs (looks better) Change-Id: Ibcd762ab06e51451a53bbce5860cc137bee22ccf --- core/java/android/webkit/WebSettings.java | 30 +++++++++++------------ 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/core/java/android/webkit/WebSettings.java b/core/java/android/webkit/WebSettings.java index 203de9c2e7e07..e49373923ec92 100644 --- a/core/java/android/webkit/WebSettings.java +++ b/core/java/android/webkit/WebSettings.java @@ -29,10 +29,10 @@ import java.lang.annotation.Target; /** * Manages settings state for a WebView. When a WebView is first created, it * obtains a set of default settings. These default settings will be returned - * from any getter call. A WebSettings object obtained from - * WebView.getSettings() is tied to the life of the WebView. If a WebView has - * been destroyed, any method call on WebSettings will throw an - * IllegalStateException. + * from any getter call. A {@code WebSettings} object obtained from + * {@link WebView#getSettings()} is tied to the life of the WebView. If a WebView has + * been destroyed, any method call on {@code WebSettings} will throw an + * {@link IllegalStateException}. */ // This is an abstract base class: concrete WebViewProviders must // create a class derived from this, and return an instance of it in the @@ -41,13 +41,13 @@ public abstract class WebSettings { /** * Enum for controlling the layout of html. *