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)