From 2b4cc6ccb5f86d856eca2fb069b10b11aaa278bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20Oudompheng?= Date: Wed, 11 Jul 2012 20:26:51 +0200 Subject: [PATCH] spec: correct typo in string conversion examples. R=golang-dev, dave, r CC=golang-dev, remy https://golang.org/cl/6378046 --- doc/go_spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/go_spec.html b/doc/go_spec.html index 0f5e803da2a..94ab9bbe7fe 100644 --- a/doc/go_spec.html +++ b/doc/go_spec.html @@ -1,6 +1,6 @@ @@ -3516,7 +3516,7 @@ the range of valid Unicode code points are converted to "\uFFFD".
 string('a')       // "a"
-string(-1)        // "\ufffd" == "\xef\xbf\xbd "
+string(-1)        // "\ufffd" == "\xef\xbf\xbd"
 string(0xf8)      // "\u00f8" == "ø" == "\xc3\xb8"
 type MyString string
 MyString(0x65e5)  // "\u65e5" == "日" == "\xe6\x97\xa5"