Remove uses of implicit static typing from the documentation
This commit is contained in:
@ -7,8 +7,8 @@
|
||||
This class implements a writer that allows storing the multiple blobs in a zip archive.
|
||||
[codeblock]
|
||||
func write_zip_file():
|
||||
var writer := ZIPPacker.new()
|
||||
var err := writer.open("user://archive.zip")
|
||||
var writer = ZIPPacker.new()
|
||||
var err = writer.open("user://archive.zip")
|
||||
if err != OK:
|
||||
return err
|
||||
writer.start_file("hello.txt")
|
||||
|
||||
Reference in New Issue
Block a user