Browse Source

Merge pull request #8997 from TBlazeWarriorT/patch-1

[Documentation>Runtime file loading and saving] Removed a single space that shouldn't be there
Matthew 1 year ago
parent
commit
0bbf422de5
1 changed files with 1 additions and 1 deletions
  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)