Replace UPDATE with PUT in the quick tips

I suppose you meant PUT there.
This commit is contained in:
Yevhen Pavliuk
2014-11-02 13:49:32 +02:00
parent ef377daffe
commit 535b659280

View File

@ -93,7 +93,7 @@
<dt>201 CREATED</dt>
<dd>Successful creation occurred (via either POST or PUT). Set the Location header to contain a link to the newly-created resource (on POST). Response body content may or may not be present.</dd>
<dt>204 NO CONTENT</dt>
<dd>Indicates success but nothing is in the response body, often used for DELETE and UPDATE operations.</dd>
<dd>Indicates success but nothing is in the response body, often used for DELETE and PUT operations.</dd>
<dt>400 BAD REQUEST</dt>
<dd>General error when fulfilling the request would cause an invalid state. Domain validation errors, missing data, etc. are some examples.</dd>
<dt>401 UNAUTHORIZED</dt>