From fdcb2f0aa6abafb15789417c2736ceb170f71d5d Mon Sep 17 00:00:00 2001 From: Patrick Mylund Nielsen Date: Sun, 29 Jan 2012 04:07:23 +0100 Subject: [PATCH] Uppercase C --- README | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README b/README index 1c80bf9..90003fd 100644 --- a/README +++ b/README @@ -140,19 +140,19 @@ func (c *Cache) DeleteExpired() func (c *Cache) Flush() Deletes all items from the cache. -func (c *cache) Save(w io.Writer) error +func (c *Cache) Save(w io.Writer) error Writes the cache's items (using Gob) to an io.Writer. Returns an error if the serialization fails, e.g. because there are unserializable objects like channels in the cache. -func (c *cache) SaveFile(fname string) error +func (c *Cache) SaveFile(fname string) error Saves the cache's items to the given filename, creating the file if it doesn't exist, and overwriting it if it does. -func (c *cache) Load(r io.Reader) error +func (c *Cache) Load(r io.Reader) error Adds (Gob-serialized) cache items from an io.Reader, excluding any items that already exist in the current cache. -func (c *cache) LoadFile(fname string) error +func (c *Cache) LoadFile(fname string) error Loads and adds cache items from the given filename, excluding any items that already exist in the current cache.