瀏覽代碼

Fix incorrect order in recursive update command

Correct order is `update --init --recursive` instead of `--init update --recursive`
Twarit Waikar 6 年之前
父節點
當前提交
5c2b121ed4
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tutorials/plugins/gdnative/gdnative-cpp-example.rst

+ 1 - 1
tutorials/plugins/gdnative/gdnative-cpp-example.rst

@@ -102,7 +102,7 @@ You will need to execute the following commands:
 .. code-block:: none
 
     cd gdnative_cpp_example
-    git submodule --init update --recursive
+    git submodule update --init --recursive
 
 This will clone these two repositories into your project folder.