From 99360acb319fae91e90a8c292ab3260f59153e74 Mon Sep 17 00:00:00 2001 From: Patrick Mylund Nielsen Date: Mon, 2 Jan 2012 14:44:50 +0100 Subject: [PATCH] V should be Item --- cache.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cache.go b/cache.go index 10cafc6..274ff64 100644 --- a/cache.go +++ b/cache.go @@ -182,7 +182,7 @@ func (c *cache) IncrementFloat(k string, n float64) error { v, found := c.Items[k] if !found { - return fmt.Errorf("V not found") + return fmt.Errorf("Item not found") } t := reflect.TypeOf(v.Object)