diff options
| author | Nate Fischer <ntfschr@google.com> | 2017-10-26 10:43:00 -0700 |
|---|---|---|
| committer | Nate Fischer <ntfschr@google.com> | 2017-10-26 10:43:00 -0700 |
| commit | 2be201ec25bcc20510d220c86e90c89fe20b02a3 (patch) | |
| tree | f8ff868f455760bfae09f53dde7bf24bac496828 /core/java/android/webkit/WebView.java | |
| parent | 670c338751ce3f8175e84845f20bd99ea12e5f1d (diff) | |
WebView: change 'iff' to 'if' in docs
Docs change only, no change to logic.
This replaces "iff" (if and only if) with "if". The former term is
unclear, and there's no real benefit to expanding to "if and only if."
Change-Id: I1ac26e24b816f784b6868c8860849d4118b33294
Fixes: 68133964
Test: make -j40 docs (manually verify the change looks good)
Diffstat (limited to 'core/java/android/webkit/WebView.java')
| -rw-r--r-- | core/java/android/webkit/WebView.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index dfc81b2bcb5a..259bf60a3059 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -1103,7 +1103,7 @@ public class WebView extends AbsoluteLayout /** * Gets whether this WebView has a back history item. * - * @return {@code true} iff this WebView has a back history item + * @return {@code true} if this WebView has a back history item */ public boolean canGoBack() { checkThread(); @@ -1121,7 +1121,7 @@ public class WebView extends AbsoluteLayout /** * Gets whether this WebView has a forward history item. * - * @return {@code true} iff this WebView has a forward history item + * @return {@code true} if this WebView has a forward history item */ public boolean canGoForward() { checkThread(); |
