Skip to content

Commit 8e40990

Browse files
new
Change-Id: I658075bc9f4a2a8cd749a0f06216def6b7258421
1 parent a2c9e21 commit 8e40990

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/internal/abi/map.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const (
1313

1414
// Maximum key or elem size to keep inline (instead of mallocing per element).
1515
// Must fit in a uint8.
16-
// Fast versions cannot handle big elems - the cutoff size for
16+
// Note: fast map functions cannot handle big elems (bigger than MapMaxElemBytes).
1717
MapMaxKeyBytes = 128
1818
MapMaxElemBytes = 128 // Must fit in a uint8.
1919
)

0 commit comments

Comments
 (0)