Skip to content

Commit

Permalink
Fixed error.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbanzon committed Apr 18, 2014
1 parent d80a358 commit 6dbe607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shorthand.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ func (r Request) Put() (int, []byte, error) {
return res.Code, res.Data, err
}

func (r Request) Delete(success, failure shorthandResponseHandler) (int, []byte, error) {
func (r Request) Delete() (int, []byte, error) {
req := createHttpRequest(r)
res, err := req.MakeDeleteRequest()
return res.Code, res.Data, err
Expand Down

0 comments on commit 6dbe607

Please sign in to comment.