diff --git a/doc/go1.11.html b/doc/go1.11.html index a070442535..87c687cb64 100644 --- a/doc/go1.11.html +++ b/doc/go1.11.html @@ -453,7 +453,8 @@ for k := range m {
- TODO: https://golang.org/cl/112115: add machine and OSABI constants
+ More ELFOSABI and EM constants have
+ been added.
- TODO: https://golang.org/cl/112516: handle surplus padding consistently
+ The decoder now consistently
+ returns io.ErrUnexpectedEOF for an incomplete
+ chunk. Previously it would return io.EOF in some
+ cases.
- TODO: https://golang.org/cl/99696: disallow quote for use as Comma
+ The Reader now rejects attempts to set
+ the Comma field to a double-quote character, as
+ double-quote characters already have a special meaning in CSV.
- TODO: https://golang.org/cl/100235: report errors for incorrect line directives
+ The package no longer modifies filenames in //line
+ directives when recording position information or reporting
+ errors. Previously the package would change relative paths
+ in //line directives to absolute paths by
+ prepending the source file directory.
- TODO: https://golang.org/cl/121815: ignore untyped nil arguments to default escapers
+ The package has changed its behavior when a typed interface
+ value is passed to an implicit escaper function. Previously such
+ a value was written out as (an escaped form)
+ of <nil>. Now such values are ignored, just
+ as an untyped nil value is (and always has been)
+ ignored.
- In previous versions, passing an untyped nil to a template function
- would result in an incorrect error stating that the function was missing an argument.
- Errors resulting from untyped nil values being passed to template-evaluated functions
- are now properly reported.
+ In previous versions untyped nil values passed to
+ template functions were ignored. They are now passed as normal
+ arguments.