From d1d48ea4f970e8e296669ad7e153c15cc6161f4d Mon Sep 17 00:00:00 2001 From: Denis Knauf Date: Mon, 29 Mar 2010 19:20:52 +0200 Subject: [PATCH] Cache: typo --- lib/logan/cache.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logan/cache.rb b/lib/logan/cache.rb index 3804886..fb59f27 100644 --- a/lib/logan/cache.rb +++ b/lib/logan/cache.rb @@ -31,7 +31,7 @@ class LogAn::Cache end def type= type - self.read, self.write = type & 1 > 0, type & 2 > 0 + self.read_cache, self.write_cache = type & 1 > 0, type & 2 > 0 type end