From c2c31db092429d60f02d4a5e6a26b77989f74148 Mon Sep 17 00:00:00 2001 From: Patrick Mylund Nielsen Date: Sun, 29 Jan 2012 03:46:29 +0100 Subject: [PATCH] Ditto for source file --- cache.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cache.go b/cache.go index d300aee..f639654 100644 --- a/cache.go +++ b/cache.go @@ -61,10 +61,10 @@ package cache // } // // // If you store a reference type like a pointer, slice, map or channel, you -// // do not need to run Set if you modify the underlying data. The cache does -// // not serialize its data, so if you modify a struct whose pointer you've -// // stored in the cache, retrieving that pointer with Get will point you to -// // the same data: +// // do not need to run Set if you modify the underlying data. The cached +// // reference points to the same memory, so if you modify a struct whose +// // pointer you've stored in the cache, retrieving that pointer with Get will +// // point you to the same data: // foo := &MyStruct{Num: 1} // c.Set("foo", foo, 0) // ...