Skip to content

Commit f1bf225

Browse files
authored
Fixed typo on Readme.adoc (#322)
I found some typos while trying new ZIP APIs (thank you!). Seems like `oz` should be `os`.
1 parent b9a0a5b commit f1bf225

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Readme.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1341,7 +1341,7 @@ os.zip(
13411341
This will include only `.txt` files, excluding any `.log` files and anything inside
13421342
the `temp` folder.
13431343

1344-
==== `oz.zip.stream`
1344+
==== `os.zip.stream`
13451345

13461346
You can use `os.zip.stream` to write the final zip to an `OutputStream` rather than a
13471347
concrete `os.Path`. `os.zip.stream` returns a `geny.Writable`, which has a `writeBytesToStream`
@@ -1393,7 +1393,7 @@ os.unzip(
13931393
)
13941394
----
13951395

1396-
===== `oz.unzip.list`
1396+
===== `os.unzip.list`
13971397
You can list the contents of the zip file without extracting them:
13981398

13991399
[source,scala]
@@ -1403,7 +1403,7 @@ os.unzip.list(os.Path("/path/to/archive.zip"))
14031403

14041404
This will print all the file paths contained in the zip archive.
14051405

1406-
==== `oz.unzip.stream`
1406+
==== `os.unzip.stream`
14071407

14081408
You can unzip a zip file from any arbitrary `java.io.InputStream` containing its binary data
14091409
using the `os.unzip.stream` method:

0 commit comments

Comments
 (0)