From 0f47c82195de0093b44cc89d773d5e10458d345d Mon Sep 17 00:00:00 2001 From: Doug Black Date: Mon, 27 Jan 2014 23:46:15 -0500 Subject: doc fix --- core.go | 6 +++--- 1 file 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{}) } -- cgit