Browse Source

Fix `res://` appearing as an URL in Scenes and nodes (#2741)

Fix `res://` appearing as an URL in Scenes and nodes
Hugo Locurcio 5 years ago
parent
commit
c169b8adbb
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
 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
 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
 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
 matter the platform or install location, it is the way to locate where
 resource files are from inside the game.
 resource files are from inside the game.