From b8d4d0218bae8881db2e1e2ea1de7b9f43d6c14d Mon Sep 17 00:00:00 2001
From: Zhou Peng
Date: Fri, 22 Jun 2018 05:31:06 +0000
Subject: [PATCH] runtime: fix comments style typo
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
---
src/runtime/iface.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/runtime/iface.go b/src/runtime/iface.go
index 4362f2cd5b..15c412c4e6 100644
--- a/src/runtime/iface.go
+++ b/src/runtime/iface.go
@@ -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.
--
2.50.0