Skip to content

Commit 0a959df

Browse files
authored
Merge pull request #727 from mardukbp/patch-1
Clojure CLI: Fixed the markup of source blocks
2 parents f39ef34 + b3e5839 commit 0a959df

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

content/reference/clojure_cli.adoc

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -599,9 +599,9 @@ The Clojure CLI is designed to provide access to programs (functions) in other l
599599
=== Dependency list
600600

601601
[source]
602-
---
602+
----
603603
clj -X:deps list
604-
---
604+
----
605605

606606
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.
607607

@@ -611,28 +611,28 @@ See https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html
611611
=== Dependency tree
612612

613613
[source]
614-
---
614+
----
615615
clj -X:deps tree
616-
---
616+
----
617617

618618
Prints dependency tree with inclusion/exclusion information as determined during <<dep_expansion#_tree_printing,dependency expansion>>). Additional options can be used to select aliases or other classpath modifications, or to modify printing information.
619619

620620
For example, the following can be used to print the deps tree for a `:test` alias:
621621

622622
[source]
623-
---
623+
----
624624
clj -X:deps tree :aliases '[:test]`
625-
---
625+
----
626626

627627
See https://clojure.github.io/tools.deps.cli/clojure.tools.deps.cli.api-api.html#clojure.tools.deps.cli.api/tree[API docs].
628628

629629
[[deps_aliases]]
630630
=== Alias list
631631

632632
[source]
633-
---
633+
----
634634
clj -X:deps aliases
635-
---
635+
----
636636

637637
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.
638638

0 commit comments

Comments
 (0)