aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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