diff --git a/doc/go1.17.html b/doc/go1.17.html index 9f334868699dd..9328211c9a984 100644 --- a/doc/go1.17.html +++ b/doc/go1.17.html @@ -241,13 +241,25 @@

Minor changes to the library

-
bufio, bytes, strings
+
bufio

- TODO: https://golang.org/cl/280492: handle negative runes in WriteRune + The Writer.WriteRune method + now writes the replacement character U+FFFD for negative rune values, + as it does for other invalid runes.

-
+
+ +
bytes
+
+

+ The Buffer.WriteRune method + now writes the replacement character U+FFFD for negative rune values, + as it does for other invalid runes. +

+
+
compress/lzw
@@ -416,6 +428,16 @@

Minor changes to the library

+
strings
+
+

+ The Builder.WriteRune method + now writes the replacement character U+FFFD for negative rune values, + as it does for other invalid runes. +

+
+
+
sync/atomic

@@ -477,7 +499,18 @@

Minor changes to the library

unicode

- TODO: https://golang.org/cl/280493: correctly handle negative runes + The Is, + IsGraphic, + IsLetter, + IsLower, + IsMark, + IsNumber, + IsPrint, + IsPunct, + IsSpace, + IsSymbol, and + IsUpper functions + now return false on negative rune values, as they do for other invalid runes.