浏览代码

[eval] Fix field typo in haxe.zip.Compress (#11143)

tobil4sk 2 年之前
父节点
当前提交
6cdfd289a9
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      std/eval/_std/haxe/zip/Compress.hx

+ 1 - 1
std/eval/_std/haxe/zip/Compress.hx

@@ -24,7 +24,7 @@ package haxe.zip;
 
 extern class Compress {
 	function new(level:Int):Void;
-	function execute(src:haxe.io.Bytes, srcPos:Int, dst:haxe.io.Bytes, dstPos:Int):{done:Bool, read:Int, wriet:Int};
+	function execute(src:haxe.io.Bytes, srcPos:Int, dst:haxe.io.Bytes, dstPos:Int):{done:Bool, read:Int, write:Int};
 	function setFlushMode(f:FlushMode):Void;
 	function close():Void;
 	static function run(s:haxe.io.Bytes, level:Int):haxe.io.Bytes;