aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-26 10:54:48 -0800
committerDoug Black <dblack@twilio.com>2014-01-26 10:54:48 -0800
commit513d02454d9f0c71a3194aaa24f7e7754597e431 (patch)
tree08910edcc4c99864de520b9d252a184b9f71029f
parentMerge pull request #3 from strandmon/patch-1 (diff)
downloadsleepy-513d02454d9f0c71a3194aaa24f7e7754597e431.tar.gz
sleepy-513d02454d9f0c71a3194aaa24f7e7754597e431.tar.bz2
sleepy-513d02454d9f0c71a3194aaa24f7e7754597e431.zip
fix signature
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index 581fdda..5447f30 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ type Item struct {
sleepy.DeleteNotSupported
}
-func (item Item) Get(values ...url.Values) (int, interface{}) {
+func (item Item) Get(values url.Values) (int, interface{}) {
items := []string{"item1", "item2"}
data := map[string][]string{"items": items}
bgstack15