about summary refs log tree commit diff
path: root/src/libutil
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2016-02-24T13·49+0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2016-02-24T13·49+0100
commit45c83e5f9b0faef97e99ecabab8f568799d0d801 (patch)
treea539602363459c78ee7fd68bd770f52511ad367d /src/libutil
parent263187a2ec0a2ddd16cfd8c54c55e3455c9cd987 (diff)
Typo
Diffstat (limited to 'src/libutil')
-rw-r--r--src/libutil/lru-cache.hh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libutil/lru-cache.hh b/src/libutil/lru-cache.hh
index 3c6569cf41..4344d6601b 100644
--- a/src/libutil/lru-cache.hh
+++ b/src/libutil/lru-cache.hh
@@ -59,8 +59,8 @@ public:
         return true;
     }
 
-    /* Look up an item in the cache. If it's exists, it becomes the
-       most recently used item. */
+    /* Look up an item in the cache. If it exists, it becomes the most
+       recently used item. */
     // FIXME: use boost::optional?
     Value * get(const Key & key)
     {