aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/reflect
diff options
context:
space:
mode:
authorhongkuang <[email protected]>2024-04-07 16:17:09 +0800
committerRon Evans <[email protected]>2024-04-20 14:58:06 +0200
commit1154212c15e6e97048e122068730dab5a1a9427f (patch)
tree0af7679d7429b6c714c35cdf51e34de87c6fd9d1 /src/reflect
parent22bf045c9a5194001b1d52c094094cf8926823a1 (diff)
downloadtinygo-1154212c15e6e97048e122068730dab5a1a9427f.tar.gz
tinygo-1154212c15e6e97048e122068730dab5a1a9427f.zip
chore: fix function names in comment
Signed-off-by: hongkuang <[email protected]>
Diffstat (limited to 'src/reflect')
-rw-r--r--src/reflect/type.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/reflect/type.go b/src/reflect/type.go
index 56d4767f7..1356f67cd 100644
--- a/src/reflect/type.go
+++ b/src/reflect/type.go
@@ -980,7 +980,7 @@ func (t *rawType) Comparable() bool {
return (t.meta & flagComparable) == flagComparable
}
-// isbinary() returns if the hashmapAlgorithmBinary functions can be used on this type
+// isBinary returns if the hashmapAlgorithmBinary functions can be used on this type
func (t *rawType) isBinary() bool {
return (t.meta & flagIsBinary) == flagIsBinary
}