summaryrefslogtreecommitdiffstats
path: root/doc/classes/HTTPClient.xml
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2019-06-27 12:34:26 +0200
committerRémi Verschelde <rverschelde@gmail.com>2019-06-27 13:49:36 +0200
commitbc82781f7da2001aa90cdb188536518e0944e0ef (patch)
treefd836f91db1c81e76b0f90f0ef55f11701d8ae9f /doc/classes/HTTPClient.xml
parent2df8b5606b9de9d11873c27f0a297127bbbfc255 (diff)
downloadredot-engine-bc82781f7da2001aa90cdb188536518e0944e0ef.tar.gz
doc: Replace all [code]CONSTANT[/code] by new [constant CONSTANT] hyperlinks
Diffstat (limited to 'doc/classes/HTTPClient.xml')
-rw-r--r--doc/classes/HTTPClient.xml2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/HTTPClient.xml b/doc/classes/HTTPClient.xml
index 16f9531dbd..325e6ca48e 100644
--- a/doc/classes/HTTPClient.xml
+++ b/doc/classes/HTTPClient.xml
@@ -193,7 +193,7 @@
HTTP POST method. The POST method is used to submit an entity to the specified resource, often causing a change in state or side effects on the server. This is often used for forms and submitting data or uploading files.
</constant>
<constant name="METHOD_PUT" value="3" enum="Method">
- HTTP PUT method. The PUT method asks to replace all current representations of the target resource with the request payload. (You can think of [code]POST[/code] as "create or update" and [code]PUT[/code] as "update", although many services tend to not make a clear distinction or change their meaning).
+ HTTP PUT method. The PUT method asks to replace all current representations of the target resource with the request payload. (You can think of POST as "create or update" and PUT as "update", although many services tend to not make a clear distinction or change their meaning).
</constant>
<constant name="METHOD_DELETE" value="4" enum="Method">
HTTP DELETE method. The DELETE method requests to delete the specified resource.