szip: change documentation style (#8883)

This commit is contained in:
StunxFS 2021-02-22 08:59:36 -04:00 committed by GitHub
parent b2cdd2cac0
commit ac1c4932e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 41 additions and 144 deletions

View file

@ -1,7 +1,7 @@
import szip
import os
fn test_compile() {
fn test_szip() {
mut z := szip.open('test_compile.zip', szip.best_speed, szip.m_write) or {
assert false
return
@ -11,3 +11,4 @@ fn test_compile() {
os.rm('test_compile.zip') or { }
}
}