Minor Go formatting fix

Ian Lance Taylor 2020-02-13 20:47:12 -08:00
parent 1d90207ce2
commit 86fee29d70

@ -460,7 +460,7 @@ a variable, it will be allocated on the heap if necessary. So these
functions are equivalent:
```go
type S struct{ I int }
type S struct { I int }
func f1() *S {
return new(S)