diff options
| -rw-r--r-- | doc/classes/HTTPRequest.xml | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/classes/HTTPRequest.xml b/doc/classes/HTTPRequest.xml index 8cc7ecfbe3..04429d587f 100644 --- a/doc/classes/HTTPRequest.xml +++ b/doc/classes/HTTPRequest.xml @@ -23,7 +23,7 @@  		    # Note: Don't make simultaneous requests using a single HTTPRequest node.  		    # The snippet below is provided for reference only.  		    var body = {"name": "Godette"} -		    var error = http_request.request("https://httpbin.org/post", [], true, HTTPClient.METHOD_POST, body) +		    error = http_request.request("https://httpbin.org/post", [], true, HTTPClient.METHOD_POST, body)  		    if error != OK:  		        push_error("An error occurred in the HTTP request.")  |