aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-27 12:10:07 -0500
committerDoug Black <dblack@twilio.com>2014-01-27 12:10:07 -0500
commit6d35d9577e1ff46adce41209051dd737bc98e35b (patch)
treee40ad482dcb794b26c2f058124a13536b4aa9944 /README.md
parentformatting and use 'errors' (diff)
downloadsleepy-6d35d9577e1ff46adce41209051dd737bc98e35b.tar.gz
sleepy-6d35d9577e1ff46adce41209051dd737bc98e35b.tar.bz2
sleepy-6d35d9577e1ff46adce41209051dd737bc98e35b.zip
update README
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/README.md b/README.md
index 19e2b32..9b4d7e3 100644
--- a/README.md
+++ b/README.md
@@ -17,7 +17,6 @@ type Item struct { }
func (item Item) Get(values url.Values) (int, interface{}) {
items := []string{"item1", "item2"}
data := map[string][]string{"items": items}
-
return 200, data
}
bgstack15