From 9edade5fa478f22a954b1498e9a4e6690f1751ca Mon Sep 17 00:00:00 2001 From: Brian Date: Mon, 19 Feb 2024 23:09:23 -0300 Subject: [PATCH] Removed a single space that shouldn't be there --- tutorials/io/runtime_file_loading_and_saving.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorials/io/runtime_file_loading_and_saving.rst b/tutorials/io/runtime_file_loading_and_saving.rst index 84df8200559..2d431ab146e 100644 --- a/tutorials/io/runtime_file_loading_and_saving.rst +++ b/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)