Browse Source

Fix incorrect order in recursive update command

Correct order is `update --init --recursive` instead of `--init update --recursive`
Twarit Waikar 6 years ago
parent
commit
5c2b121ed4
1 changed files with 1 additions and 1 deletions
  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.