From ffe24fd5944b5e30350c2db7f1b0ca5e4eee598e Mon Sep 17 00:00:00 2001 From: cubixle Date: Mon, 19 Feb 2024 17:40:54 +0000 Subject: [PATCH] update readme --- lru/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lru/README.md b/lru/README.md index 3d51962..9bde8de 100644 --- a/lru/README.md +++ b/lru/README.md @@ -2,7 +2,7 @@ This is a simple implementation of a Least Recently Used (LRU) Cache in Go. -An LRU Cache will evict the oldest used key whenever the cache gets full. +An LRU Cache will evict the oldest used key whenever the cache gets full and this one only accepts strings as values. However this could be change to support any type of data. Example usage ```go