aboutsummaryrefslogtreecommitdiff
path: root/core.go
diff options
context:
space:
mode:
Diffstat (limited to 'core.go')
-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