]> Cypherpunks repositories - gostls13.git/commitdiff
cmd/compile: fix whitespace in comment
authorJosh Bleecher Snyder <josharian@gmail.com>
Sun, 14 Mar 2021 21:27:06 +0000 (14:27 -0700)
committerJosh Bleecher Snyder <josharian@gmail.com>
Sun, 14 Mar 2021 21:50:39 +0000 (21:50 +0000)
The whitespace was there to align with the following comment,
but the extra whitespace was unnecessary; it wasn't gofmt'd.
Then the file got gofmt'd, but the whitespace didn't get fixed.

Change-Id: I45aad9605b99d83545e4e611ae3ea1b2ff9e6bf6
Reviewed-on: https://go-review.googlesource.com/c/go/+/301649
Trust: Josh Bleecher Snyder <josharian@gmail.com>
Run-TryBot: Josh Bleecher Snyder <josharian@gmail.com>
Reviewed-by: Emmanuel Odeke <emmanuel@orijtech.com>
src/cmd/compile/internal/ssa/gen/genericOps.go

index 2a5b77bad0e7a7becf0acbfaceefc51f7ddffee8..85c58ef74cbd9dcb78cd42087368ffccdd9fd6e5 100644 (file)
@@ -264,7 +264,7 @@ var genericOps = []opData{
        //   ±0  → ±0 (sign preserved)
        //   x<0 → NaN
        //   NaN → NaN
-       {name: "Sqrt", argLength: 1},   // √arg0   (floating point, double precision)
+       {name: "Sqrt", argLength: 1},   // √arg0 (floating point, double precision)
        {name: "Sqrt32", argLength: 1}, // √arg0 (floating point, single precision)
 
        // Round to integer, float64 only.