From d96330d65a97ea16d8bad38e3dada41424df97a2 Mon Sep 17 00:00:00 2001 From: guangwu Date: Fri, 17 Nov 2023 11:30:28 +0800 Subject: [PATCH] fix: typo --- concurrent_map.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concurrent_map.go b/concurrent_map.go index baccab0..8c374f3 100644 --- a/concurrent_map.go +++ b/concurrent_map.go @@ -192,7 +192,7 @@ type Tuple[K comparable, V any] struct { // Iter returns an iterator which could be used in a for range loop. // -// Deprecated: using IterBuffered() will get a better performence +// Deprecated: using IterBuffered() will get a better performance func (m ConcurrentMap[K, V]) Iter() <-chan Tuple[K, V] { chans := snapshot(m) ch := make(chan Tuple[K, V])