Skip to content

Commit 803dc24

Browse files
committed
fix invalid anchor links
1 parent 5e6d022 commit 803dc24

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

content/about/differences.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ self-host / bootstrapped ClojureScript via its `cljs.js/\*load-fn*` capability.
269269
* `def` and `binding` work as in Clojure
270270
** but on ordinary js variables
271271
** Clojure can represent unbound vars. In ClojureScript `(def x)` results in `(nil? x)` being true.
272-
** In Clojure, `def` yields the _var itself_. In ClojureScript `def` yields the _value_, unless the REPL option <<xref/../../../reference/repl-options#def-emits-var#,:def-emits-var>> is set (this defaults to `true` for REPLs).
272+
** In Clojure, `def` yields the _var itself_. In ClojureScript `def` yields the _value_, unless the REPL option <<xref/../../../reference/repl-options#def-emits-var,:def-emits-var>> is set (this defaults to `true` for REPLs).
273273
* Atoms work as in Clojure
274274
* Refs and Agents are not currently implemented
275275
* Validators work as in Clojure

content/about/functional-programming.adoc

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Clojure is a functional programming language. It provides the tools to avoid mut
1717

1818
== First-class functions
1919

20-
<<xref/../../reference/special_forms#fn#,fn>> creates a function object. It yields a value like any other - you can store it in a var, pass it to functions etc.
20+
<<xref/../../reference/special_forms#fn,fn>> creates a function object. It yields a value like any other - you can store it in a var, pass it to functions etc.
2121
[source,clojure]
2222
----
2323
(def hello (fn [] "Hello world"))
@@ -138,4 +138,4 @@ In the absence of mutable local variables, looping and iteration must take a dif
138138
(my-zipmap [:a :b :c] [1 2 3])
139139
-> {:b 2, :c 3, :a 1}
140140
----
141-
For situations where mutual recursion is called for, recur can't be used. Instead, http://clojure.github.io/clojure/clojure.core-api.html#clojure.core/trampoline[trampoline] may be a good option.
141+
For situations where mutual recursion is called for, recur can't be used. Instead, http://clojure.github.io/clojure/clojure.core-api.html#clojure.core/trampoline[trampoline] may be a good option.

content/reference/compiler-options.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -969,7 +969,7 @@ Defaults to `true` if ClojureScript is being used via `cljs.main`, and `false` o
969969
[[infer-externs]]
970970
=== :infer-externs
971971

972-
Enables automatically generating externs for interop calls to JavaScript. Defaults to `false`. For more info see <<xref/../../guides/externs#externs-inference#,Externs (Alpha)>>
972+
Enables automatically generating externs for interop calls to JavaScript. Defaults to `false`. For more info see <<xref/../../guides/externs#externs-inference,Externs (Alpha)>>
973973

974974
[source,clojure]
975975
----

0 commit comments

Comments
 (0)