From e3b9f8b9b295baca000c0a23d90d76c984168735 Mon Sep 17 00:00:00 2001 From: Scott Main Date: Tue, 18 May 2010 08:41:36 -0700 Subject: [PATCH] docs: fix markup error Change-Id: I59a42f47483d76b6a3220b1d88e9d6bd96f83daf --- core/java/android/webkit/WebView.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/java/android/webkit/WebView.java b/core/java/android/webkit/WebView.java index 863a6cd913fab..921d0f559118b 100644 --- a/core/java/android/webkit/WebView.java +++ b/core/java/android/webkit/WebView.java @@ -143,12 +143,13 @@ import junit.framework.Assert; * * *

Then load the desired web page:

+ *
  * // Simplest usage: note that an exception will NOT be thrown
  * // if there is an error loading this page (see below).
  * webview.loadUrl("http://slashdot.org/");
  *
  * // OR, you can also load from an HTML string:
- * String summary = "<html><body>You scored <b>192 points.</body></html>";
+ * String summary = "<html><body>You scored <b>192</b> points.</body></html>";
  * webview.loadData(summary, "text/html", "utf-8");
  * // ... although note that there are restrictions on what this HTML can do.
  * // See the JavaDocs for {@link #loadData(String,String,String) loadData()} and {@link