diff --git a/README.md b/README.md index 966f66bf..fe344315 100644 --- a/README.md +++ b/README.md @@ -1113,11 +1113,13 @@ Your command line args: (1 2 3) ### Extract single file from zip ``` clojure -;; given the following zip file created as follows: +;; Given the following: + ;; $ echo 'contents' > file ;; $ zip zipfile.zip file ;; $ rm file -;; we extract the single file from the zip using java.nio: + +;; we extract the single file from the zip archive using java.nio: (import '[java.nio.file Files FileSystems CopyOption]) (let [zip-file (io/file "zipfile.zip")