From e42657e37ffeecd35beda9afe705d67a4626abd7 Mon Sep 17 00:00:00 2001 From: Tripp Lilley Date: Thu, 25 Jul 2024 01:10:07 +0800 Subject: [PATCH] Fix link to Clojure CLI doc at clojure.org in README.md Doc reorg upstream split CLI and deps.edn docs, so this fixes the link to point to the new location. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ef9a3a..0b4da54 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,7 @@ The main ideas: - Put as little effort as possible into turning a clojure function into a CLI, similar to `-X` style invocations. For lazy people like me! If you are not familiar with `clj -X`, read the docs - [here](https://clojure.org/reference/deps_and_cli#_execute_a_function). + [here](https://clojure.org/reference/clojure_cli#use_fn). - But with a better UX by not having to use quotes on the command line as a result of having to pass EDN directly: `:dir foo` instead of `:dir '"foo"'` or who knows how to write the latter in `cmd.exe` or Powershell.