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

View File

@ -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")