瀏覽代碼

Merge pull request #3599 from akien-mga/you-shall-not-path

Fix old style -path mention
Rémi Verschelde 5 年之前
父節點
當前提交
29a22ce7f4
共有 1 個文件被更改,包括 5 次插入5 次删除
  1. 5 5
      getting_started/editor/command_line_tutorial.rst

+ 5 - 5
getting_started/editor/command_line_tutorial.rst

@@ -277,11 +277,11 @@ instead of ``--export``. Their parameters and usage are the same.
 Running a script
 Running a script
 ----------------
 ----------------
 
 
-It is possible to run a simple .gd script from the command line. This
-feature is especially useful in large projects, for batch
+It is possible to run a simple ``.gd`` script from the command line.
+This feature is especially useful in large projects, e.g. for batch
 conversion of assets or custom import/export.
 conversion of assets or custom import/export.
 
 
-The script must inherit from SceneTree or MainLoop.
+The script must inherit from ``SceneTree`` or ``MainLoop``.
 
 
 Here is a simple example of how it works:
 Here is a simple example of how it works:
 
 
@@ -301,5 +301,5 @@ And how to run it:
     # Prints "Hello!" to standard output.
     # Prints "Hello!" to standard output.
     godot -s sayhello.gd
     godot -s sayhello.gd
 
 
-If no project.godot exists at the path, current path is assumed to be the
-current working directory (unless ``-path`` is specified).
+If no ``project.godot`` exists at the path, current path is assumed to be the
+current working directory (unless ``--path`` is specified).