From 2be201ec25bcc20510d220c86e90c89fe20b02a3 Mon Sep 17 00:00:00 2001 From: Nate Fischer Date: Thu, 26 Oct 2017 10:43:00 -0700 Subject: 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) --- core/java/android/webkit/WebView.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/java/android/webkit/WebView.java') 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(); -- cgit v1.2.3