diff options
author | hongkuang <[email protected]> | 2024-04-07 16:17:09 +0800 |
---|---|---|
committer | Ron Evans <[email protected]> | 2024-04-20 14:58:06 +0200 |
commit | 1154212c15e6e97048e122068730dab5a1a9427f (patch) | |
tree | 0af7679d7429b6c714c35cdf51e34de87c6fd9d1 /src/reflect | |
parent | 22bf045c9a5194001b1d52c094094cf8926823a1 (diff) | |
download | tinygo-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.go | 2 |
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 } |