Update cache/lru_id_cache.go

Vincent Tiu and Michael Muré created

Co-authored-by: Michael Muré <batolettre@gmail.com>

Change summary

cache/lru_id_cache.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Detailed changes

cache/lru_id_cache.go 🔗

@@ -13,7 +13,7 @@ type LRUIdCache struct {
 }
 
 func NewLRUIdCache() *LRUIdCache {
-	// Ignore error here
+	// we can ignore the error here as it would only fail if the size is negative.
 	cache, _ := lru.New(math.MaxInt32)
 
 	return &LRUIdCache{