diff --git a/doc/go1.9.html b/doc/go1.9.html index cab7be2f85..be0ceefcd5 100644 --- a/doc/go1.9.html +++ b/doc/go1.9.html @@ -77,9 +77,9 @@ type T1 = T2 language specification now states when implementations are allowed to fuse floating point operations together, such as by using an architecture's "fused - multiply and add" (FMA) instruction to compute x*y + z + multiply and add" (FMA) instruction to compute x*y + z without rounding the intermediate result x*y. - To force the intermediate rounding, write float64(x*y) + z. + To force the intermediate rounding, write float64(x*y) + z.

Ports

@@ -204,7 +204,7 @@ type T1 = T2

Long lists of arguments are now truncated. This improves the readability - of go doc on some generated code. + of go doc on some generated code.

@@ -494,8 +494,8 @@ version of gccgo.

Rows.Scan can now scan user-defined string types. - Previously the package supported scanning into numeric types like type Int int64. It now also supports - scanning into string types like type String string. + Previously the package supported scanning into numeric types like type Int int64. It now also supports + scanning into string types like type String string.

@@ -516,7 +516,7 @@ version of gccgo. NullBytes and NullRawValue - represent the ASN.1 NULL type. + represent the ASN.1 NULL type.