summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author=Corey Hulen <corey@hulen.com>2015-06-22 10:41:41 -0800
committer=Corey Hulen <corey@hulen.com>2015-06-22 10:41:41 -0800
commitf28c9b6f07978b4dcb115d9b8924b0be5189b054 (patch)
tree956eec8f55abed283b9c15e98e14c4da0b3401b1
parent72c2ca8fc865f9144dbf98fc1e85bb5bc5004298 (diff)
downloadchat-f28c9b6f07978b4dcb115d9b8924b0be5189b054.tar.gz
chat-f28c9b6f07978b4dcb115d9b8924b0be5189b054.tar.bz2
chat-f28c9b6f07978b4dcb115d9b8924b0be5189b054.zip
fixing header
-rw-r--r--utils/lru.go8
-rw-r--r--utils/lru_test.go8
2 files changed, 12 insertions, 4 deletions
diff --git a/utils/lru.go b/utils/lru.go
index 9e47c3de3..61a515e14 100644
--- a/utils/lru.go
+++ b/utils/lru.go
@@ -1,5 +1,9 @@
-// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
-// See License.txt for license information.
+// This files was copied/modified from https://github.com/hashicorp/golang-lru
+// which was (see below)
+
+// This package provides a simple LRU cache. It is based on the
+// LRU implementation in groupcache:
+// https://github.com/golang/groupcache/tree/master/lru
package utils
diff --git a/utils/lru_test.go b/utils/lru_test.go
index e26af032f..3255f5c1a 100644
--- a/utils/lru_test.go
+++ b/utils/lru_test.go
@@ -1,5 +1,9 @@
-// Copyright (c) 2015 Spinpunch, Inc. All Rights Reserved.
-// See License.txt for license information.
+// This files was copied/modified from https://github.com/hashicorp/golang-lru
+// which was (see below)
+
+// This package provides a simple LRU cache. It is based on the
+// LRU implementation in groupcache:
+// https://github.com/golang/groupcache/tree/master/lru
package utils