From 02301caac165dbf3e2da175558550268bc1064e9 Mon Sep 17 00:00:00 2001 From: JessonChan Date: Sat, 23 Aug 2014 06:47:42 +0800 Subject: [PATCH] modify desc --- httplib/httplib.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/httplib/httplib.go b/httplib/httplib.go index 6531acd2..d289d9d4 100644 --- a/httplib/httplib.go +++ b/httplib/httplib.go @@ -101,7 +101,7 @@ func Put(url string) *BeegoHttpRequest { return newBeegoRequest(url, "PUT") } -// Delete returns *BeegoHttpRequest DELETE GET method. +// Delete returns *BeegoHttpRequest DELETE method. func Delete(url string) *BeegoHttpRequest { return newBeegoRequest(url, "DELETE") }