Skip to content

Commit bc925e0

Browse files
Made a sentence easier to read and included a reference to class_String (godotengine#7034)
* Excluded user created Python venv folder * Added monospace format to code and added ref to String doc
1 parent 12ff0a1 commit bc925e0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -44,3 +44,6 @@ logo.h
4444
# Output of list-unused-images.sh tool
4545
tmp-unused-images
4646
tmp-unused-images-history
47+
48+
# User created Python virtual environement as described in the docs
49+
godot-docs-venv/

tutorials/networking/http_request_class.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ Below is all the code we need to make it work. The URL points to an online API m
7474
}
7575
}
7676

77-
With this, you should see ``(hello:world)`` printed on the console; hello being a key, and world being a value, both of them strings.
77+
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 <class_string>`.
7878

7979
For more information on parsing JSON, see the class references for :ref:`JSON <class_JSON>`.
8080

0 commit comments

Comments
 (0)