From 8cbc02af8bbb17d16152088ef6d6d8dfa7a69a8b Mon Sep 17 00:00:00 2001 From: Brad Fitzpatrick Date: Wed, 18 Jul 2018 20:20:56 +0000 Subject: [PATCH] doc/go1.11: add some links to text/scanner, remove parens Change-Id: I30d2b4b94f26300f2cf7b4ecd328a4875d69db51 Reviewed-on: https://go-review.googlesource.com/124777 Reviewed-by: Brad Fitzpatrick --- doc/go1.11.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/go1.11.html b/doc/go1.11.html index 20f8c3f8e5..8b49e55990 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -119,7 +119,7 @@ Do not send CLs removing the interior tags from such phrases.

RISC-V GOARCH values reserved

- The main Go compiler does not yet support the RISC-V architecture + The main Go compiler does not yet support the RISC-V architecture but we've reserved the GOARCH values "riscv" and "riscv64", as used by Gccgo, which does support RISC-V. This means that Go files @@ -761,7 +761,9 @@ for k := range m {

text/scanner

- Scan() now returns a RawString token instead of String + The Scanner.Scan method now returns + the RawString token + instead of String for raw string literals.