From bc925e0c807aee986ba797dbce9316c533f3b12d Mon Sep 17 00:00:00 2001 From: Martin Majewski Date: Thu, 23 Mar 2023 02:28:05 +0100 Subject: [PATCH] Made a sentence easier to read and included a reference to class_String (#7034) * Excluded user created Python venv folder * Added monospace format to code and added ref to String doc --- .gitignore | 3 +++ tutorials/networking/http_request_class.rst | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 967f211fa..94c3fee6b 100644 --- a/.gitignore +++ b/.gitignore @@ -44,3 +44,6 @@ logo.h # Output of list-unused-images.sh tool tmp-unused-images tmp-unused-images-history + +# User created Python virtual environement as described in the docs +godot-docs-venv/ diff --git a/tutorials/networking/http_request_class.rst b/tutorials/networking/http_request_class.rst index 9a0850655..a66edadcd 100644 --- a/tutorials/networking/http_request_class.rst +++ b/tutorials/networking/http_request_class.rst @@ -74,7 +74,7 @@ Below is all the code we need to make it work. The URL points to an online API m } } -With this, you should see ``(hello:world)`` printed on the console; hello being a key, and world being a value, both of them strings. +With this, you should see ``(hello:world)`` printed on the console; ``hello`` being a key, ``world`` being a value, and both of them are of type :ref:`String `. For more information on parsing JSON, see the class references for :ref:`JSON `.