aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-02-01 21:33:07 -0500
committerDoug Black <dblack@twilio.com>2014-02-01 21:33:07 -0500
commit4b3a884bc46229d31d1a8fbff1b7c8bab752e64b (patch)
treec4e5f3db27ed1dd7b8ee966dfe5017b66668116e
parentupdate README (diff)
downloadsleepy-4b3a884bc46229d31d1a8fbff1b7c8bab752e64b.tar.gz
sleepy-4b3a884bc46229d31d1a8fbff1b7c8bab752e64b.tar.bz2
sleepy-4b3a884bc46229d31d1a8fbff1b7c8bab752e64b.zip
fix docs typo
-rw-r--r--core.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/core.go b/core.go
index 296483c..0ef5590 100644
--- a/core.go
+++ b/core.go
@@ -39,7 +39,7 @@ type DeleteSupported interface {
Delete(url.Values) (int, interface{})
}
-// An API manages a group of resources by routing to requests
+// An API manages a group of resources by routing requests
// to the correct method on a matching resource and marshalling
// the returned data to JSON for the HTTP response.
//
bgstack15