From 6ed5ba2dd85b68c13fb36b6ad062129eea785e7d Mon Sep 17 00:00:00 2001 From: Max Hilbrunner Date: Sun, 4 Mar 2018 14:28:16 +0100 Subject: [PATCH] Typo fix in HTTPRequest tutorial --- tutorials/networking/http_request_class.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/networking/http_request_class.rst b/tutorials/networking/http_request_class.rst index d49b6e574..fce7ca078 100644 --- a/tutorials/networking/http_request_class.rst +++ b/tutorials/networking/http_request_class.rst @@ -6,7 +6,7 @@ Making HTTP requests The :ref:`HTTPRequest ` node is the easiest way to make HTTP requests in Godot. It is backed by the more low-level :ref:`HTTPClient `, for which a tutorial is available :ref:`here `. -For the sake of example, we will create a simple UI with a button, that when pressed will start the HTTP request to the specified URL. +For the sake of this example, we will create a simple UI with a button, that when pressed will start the HTTP request to the specified URL. Preparing scene ---------------