aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDoug Black <dblack@twilio.com>2014-01-27 23:46:15 -0500
committerDoug Black <dblack@twilio.com>2014-01-27 23:46:15 -0500
commit0f47c82195de0093b44cc89d773d5e10458d345d (patch)
tree3d4b8b93773150cc03c98b2a9458d87e49e9e63d
parentsupport adding one resource on multiple paths (diff)
downloadsleepy-0f47c82195de0093b44cc89d773d5e10458d345d.tar.gz
sleepy-0f47c82195de0093b44cc89d773d5e10458d345d.tar.bz2
sleepy-0f47c82195de0093b44cc89d773d5e10458d345d.zip
doc fix
-rw-r--r--core.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/core.go b/core.go
index e5ab4a4..03db6e8 100644
--- a/core.go
+++ b/core.go
@@ -22,19 +22,19 @@ type GetSupported interface {
}
// PostSupported is the interface that provides the Post
-// method a resource must support to receive HTTP POST.
+// method a resource must support to receive HTTP POSTs.
type PostSupported interface {
Post(url.Values) (int, interface{})
}
// PutSupported is the interface that provides the Put
-// method a resource must support to receive HTTP PUT.
+// method a resource must support to receive HTTP PUTs.
type PutSupported interface {
Put(url.Values) (int, interface{})
}
// DeleteSupported is the interface that provides the Delete
-// method a resource must support to receive HTTP DELETE.
+// method a resource must support to receive HTTP DELETEs.
type DeleteSupported interface {
Delete(url.Values) (int, interface{})
}
bgstack15