Browse Source

Fix `res://` appearing as an URL in Scenes and nodes

This closes #2737.
Hugo Locurcio 6 years ago
parent
commit
f6aacfd549
1 changed files with 2 additions and 2 deletions
  1. 2 2
      getting_started/step_by_step/scenes_and_nodes.rst

+ 2 - 2
getting_started/step_by_step/scenes_and_nodes.rst

@@ -149,9 +149,9 @@ Hello.tscn in Scene -> Save:
 
 And here's when something funny happens. The file dialog is a special
 file dialog, and only allows you to save inside the project. The project
-root is "res://" which means "resource path". This means that files can
+root is ``res://`` which means "resource path". This means that files can
 only be saved inside the project. For the future, when doing file
-operations in Godot, remember that "res://" is the resource path, and no
+operations in Godot, remember that ``res://`` is the resource path, and no
 matter the platform or install location, it is the way to locate where
 resource files are from inside the game.