From b3e5839c937e60d3b37a335031f10d4c671bdf4b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marduk=20Bola=C3=B1os?= Date: Sun, 14 Sep 2025 11:01:54 +0200 Subject: [PATCH] Fixed the markup of source blocks Added a missing dash in some source blocks --- content/reference/clojure_cli.adoc | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/reference/clojure_cli.adoc b/content/reference/clojure_cli.adoc index 7ec2da50..916a52b6 100644 --- a/content/reference/clojure_cli.adoc +++ b/content/reference/clojure_cli.adoc @@ -599,9 +599,9 @@ The Clojure CLI is designed to provide access to programs (functions) in other l === Dependency list [source] ---- +---- clj -X:deps list ---- +---- Prints sorted list of all transitive dependencies selected for the classpath, and license information (if found). Additional options can be used to select aliases or other classpath modifications, or to modify printing information. @@ -611,18 +611,18 @@ See https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html === Dependency tree [source] ---- +---- clj -X:deps tree ---- +---- Prints dependency tree with inclusion/exclusion information as determined during <>). Additional options can be used to select aliases or other classpath modifications, or to modify printing information. For example, the following can be used to print the deps tree for a `:test` alias: [source] ---- +---- clj -X:deps tree :aliases '[:test]` ---- +---- See https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html#clojure.tools.deps.cli.api/tree[API docs]. @@ -630,9 +630,9 @@ See https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html === Alias list [source] ---- +---- clj -X:deps aliases ---- +---- This program prints all aliases available at the command line based on the current deps environment. Additional options can be used to select aliases or other classpath modifications.