aboutsummaryrefslogtreecommitdiff
path: root/sysutils
diff options
context:
space:
mode:
authorDima Dorfman <dd@FreeBSD.org>2001-06-24 20:29:39 +0000
committerDima Dorfman <dd@FreeBSD.org>2001-06-24 20:29:39 +0000
commit74aada477d30000e6ac65f94700daee685b344f1 (patch)
tree8798e94ceb4f68b1b53e875dab5a73858dd90fd7 /sysutils
parent5c70394af027233ca67119795afddb7e9e3ae14e (diff)
downloadports-74aada477d30000e6ac65f94700daee685b344f1.tar.gz
ports-74aada477d30000e6ac65f94700daee685b344f1.zip
Notes
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/p5-LJ-Cache/pkg-descr2
1 files changed, 1 insertions, 1 deletions
diff --git a/sysutils/p5-LJ-Cache/pkg-descr b/sysutils/p5-LJ-Cache/pkg-descr
index 3eed991e718f..799c3f125606 100644
--- a/sysutils/p5-LJ-Cache/pkg-descr
+++ b/sysutils/p5-LJ-Cache/pkg-descr
@@ -1,6 +1,6 @@
This class implements an LRU dictionary cache. The two operations on it are
get() and set(), both of which promote the key being referenced to the ``top''
-of the cache, so it will stay alive longest. When the cache is full and and a
+of the cache, so it will stay alive longest. When the cache is full and a
new item needs to be added, the oldest one is thrown away. You should be able
to regenerate the data at any time, if get() returns undef. This class is
useful for caching information from a slower data source while also keeping