Explorar el Código

Merge pull request #8997 from TBlazeWarriorT/patch-1

[Documentation>Runtime file loading and saving] Removed a single space that shouldn't be there
Matthew hace 1 año
padre
commit
0bbf422de5
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      tutorials/io/runtime_file_loading_and_saving.rst

+ 1 - 1
tutorials/io/runtime_file_loading_and_saving.rst

@@ -47,7 +47,7 @@ filesystem for reading and writing:
 
 ::
 
-     func save_file(content):
+    func save_file(content):
         var file = FileAccess.open("/path/to/file.txt", FileAccess.WRITE)
         file.store_string(content)