]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: fix comments style typo
authorZhou Peng <p@ctriple.cn>
Fri, 22 Jun 2018 05:31:06 +0000 (05:31 +0000)
committerIan Lance Taylor <iant@golang.org>
Fri, 22 Jun 2018 13:21:28 +0000 (13:21 +0000)
Code comments should have a space between comments characters and
actual words.

Change-Id: I6274baf1fc09b37a32ec6c69ddbb8edca9eb5469
Reviewed-on: https://go-review.googlesource.com/120475
Reviewed-by: Ian Lance Taylor <iant@golang.org>
src/runtime/iface.go

index 4362f2cd5b6da7f8433ca6c0e6c75abc0e9adde0..15c412c4e651051aec1d9a5d3f255034e256b3f0 100644 (file)
@@ -18,7 +18,7 @@ var (
        itabTableInit = itabTableType{size: itabInitSize} // starter table
 )
 
-//Note: change the formula in the mallocgc call in itabAdd if you change these fields.
+// Note: change the formula in the mallocgc call in itabAdd if you change these fields.
 type itabTableType struct {
        size    uintptr             // length of entries array. Always a power of 2.
        count   uintptr             // current number of filled entries.