Remove uses of implicit static typing from the documentation

This commit is contained in:
Micky
2024-12-02 15:40:42 +01:00
parent 893bbdfde8
commit 7539a3a7cf
4 changed files with 12 additions and 12 deletions
+3 -3
View File
@@ -7,11 +7,11 @@
This class implements a reader that can extract the content of individual files inside a zip archive.
[codeblock]
func read_zip_file():
var reader := ZIPReader.new()
var err := reader.open("user://archive.zip")
var reader = ZIPReader.new()
var err = reader.open("user://archive.zip")
if err != OK:
return PackedByteArray()
var res := reader.read_file("hello.txt")
var res = reader.read_file("hello.txt")
reader.close()
return res
[/codeblock]