diff options
author | Doug Black <dblack@twilio.com> | 2014-01-27 23:46:15 -0500 |
---|---|---|
committer | Doug Black <dblack@twilio.com> | 2014-01-27 23:46:15 -0500 |
commit | 0f47c82195de0093b44cc89d773d5e10458d345d (patch) | |
tree | 3d4b8b93773150cc03c98b2a9458d87e49e9e63d | |
parent | support adding one resource on multiple paths (diff) | |
download | sleepy-0f47c82195de0093b44cc89d773d5e10458d345d.tar.gz sleepy-0f47c82195de0093b44cc89d773d5e10458d345d.tar.bz2 sleepy-0f47c82195de0093b44cc89d773d5e10458d345d.zip |
doc fix
-rw-r--r-- | core.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -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{}) } |