Explorar o código

Fix incorrect order in recursive update command

Correct order is `update --init --recursive` instead of `--init update --recursive`
Twarit Waikar %!s(int64=6) %!d(string=hai) anos
pai
achega
5c2b121ed4
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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.