Skip to content

Commit 4d21d67

Browse files
committed
update edn-format link
1 parent 9c7c3e9 commit 4d21d67

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

content/api/cheatsheet.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2637,7 +2637,7 @@ <h2>IO</h2>
26372637
current value of *in*.
26382638
26392639
Reads data in the edn format (subset of Clojure data):
2640-
http://edn-format.org
2640+
https://github.com/edn-format/edn
26412641
26422642
opts is a map that can include the following keys:
26432643
:eof - value to return on end-of-file. When not supplied, eof throws an
@@ -2655,7 +2655,7 @@ <h2>IO</h2>
26552655
If no reader is provided, *in* will be used.
26562656
26572657
Reads data in the edn format (subset of Clojure data):
2658-
http://edn-format.org
2658+
https://github.com/edn-format/edn
26592659
26602660
clojure.tools.reader.edn/read doesn't depend on dynamic Vars, all
26612661
configuration
@@ -2683,7 +2683,7 @@ <h2>IO</h2>
26832683
current value of *in*.
26842684
26852685
Reads data in the edn format (subset of Clojure data):
2686-
http://edn-format.org
2686+
https://github.com/edn-format/edn
26872687
26882688
opts is a map that can include the following keys:
26892689
:eof - value to return on end-of-file. When not supplied, eof throws an
@@ -2701,7 +2701,7 @@ <h2>IO</h2>
27012701
If no reader is provided, *in* will be used.
27022702
27032703
Reads data in the edn format (subset of Clojure data):
2704-
http://edn-format.org
2704+
https://github.com/edn-format/edn
27052705
27062706
clojure.tools.reader.edn/read doesn't depend on dynamic Vars, all
27072707
configuration
@@ -2728,15 +2728,15 @@ <h2>IO</h2>
27282728
Reads one object from the string s. Returns nil when s is nil or empty.
27292729
27302730
Reads data in the edn format (subset of Clojure data):
2731-
http://edn-format.org
2731+
https://github.com/edn-format/edn
27322732
27332733
opts is a map as per clojure.edn/read">read-string</a> (clojure.tools.reader.edn/) <a href="https://github.com/clojure/tools.reader" title="clojure.tools.reader.edn/read-string
27342734
([s] [opts s])
27352735
Reads one object from the string s.
27362736
Returns nil when s is nil or empty.
27372737
27382738
Reads data in the edn format (subset of Clojure data):
2739-
http://edn-format.org
2739+
https://github.com/edn-format/edn
27402740
27412741
opts is a map as per clojure.tools.reader.edn/read">read-string</a></code></td>
27422742
</tr>

content/reference/clojure_cli.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ Print help to console. Also see `man clojure`.
297297
[[aliases]]
298298
== Aliases
299299

300-
When invoking commands in the context of a project, it is common to need to specify complex data that is hard to quote on the command line. As Clojure programmers, we strongly prefer to specify that data in Clojure syntax (http://edn-format.org/[edn]). The <<deps_edn#,deps.edn>> file format allows us to define arbitrary Clojure data and give that data a name using <<deps_edn#aliases,aliases>>. Aliases are simply keywords that name edn data.
300+
When invoking commands in the context of a project, it is common to need to specify complex data that is hard to quote on the command line. As Clojure programmers, we strongly prefer to specify that data in Clojure syntax (https://github.com/edn-format/edn[edn]). The <<deps_edn#,deps.edn>> file format allows us to define arbitrary Clojure data and give that data a name using <<deps_edn#aliases,aliases>>. Aliases are simply keywords that name edn data.
301301

302302
Each execution mode of the Clojure CLI has many configuration options (the "arg map"). These can be defined in edn maps via aliases and selected on the command line using the aliases in `-A`, `-X`, `-T`, or `-M`. Below is a list of all arg map keys - unless otherwise noted, these are valid in all execution modes.
303303

0 commit comments

Comments
 (0)