From e95b0bbdbc24d977cbe6ce8cb00912a9213fef12 Mon Sep 17 00:00:00 2001 From: Michiel Borkent Date: Thu, 15 Aug 2019 09:08:30 +0200 Subject: [PATCH] doc --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 328581dd4..fb161d2c3 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ More examples can be found in the [gallery](#gallery). Babashka expressions may be executed from a file using `-f` or `--file`: ``` shellsession -bb -f script.clj +bb -f download_html.clj ``` Using `bb` with a shebang also works: @@ -156,7 +156,7 @@ Using `bb` with a shebang also works: (System/exit 1))))) (defn write-html [file html] - (println "Writing html to" file) + (println "Writing file:" file) (spit file html)) (let [[url file] *command-line-args*]