From 44275b8569085e405bd50f6373f201167c1850ee Mon Sep 17 00:00:00 2001 From: Russ Cox Date: Thu, 6 Jul 2017 14:46:45 -0400 Subject: [PATCH] doc/go1.9: eliminate spaces Per note at top of doc, we don't use fixed-width spaces in fixed-width phrases like "go doc". Also ASN.1 NULL is not code so it's not at all. Change-Id: I791e4e6030b8b8d42f4621d2f4bf32fef93cf343 Reviewed-on: https://go-review.googlesource.com/47693 Run-TryBot: Russ Cox Reviewed-by: Brad Fitzpatrick --- doc/go1.9.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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.