From 44275b8569085e405bd50f6373f201167c1850ee Mon Sep 17 00:00:00 2001
From: Russ Cox 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
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
.
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.