Skip to content

Commit ef72605

Browse files
committed
Fix a couple of broken links to the manual
1 parent bad9995 commit ef72605

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

cider-connection.el

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,10 +191,10 @@ FORMAT is a format string to compile with ARGS and display on the REPL."
191191
"Check whether we're using a compatible nREPL version."
192192
(if-let* ((nrepl-version (cider--nrepl-version)))
193193
(when (version< nrepl-version cider-required-nrepl-version)
194-
(cider-emit-manual-warning "troubleshooting/#warning-saying-you-have-to-use-nrepl-0212"
194+
(cider-emit-manual-warning "troubleshooting.html#_warning_saying_you_have_to_use_nrepl_0_4_4"
195195
"CIDER requires nREPL %s (or newer) to work properly"
196196
cider-required-nrepl-version))
197-
(cider-emit-manual-warning "troubleshooting/#warning-saying-you-have-to-use-nrepl-0212"
197+
(cider-emit-manual-warning "troubleshooting.html#_warning_saying_you_have_to_use_nrepl_0_4_4"
198198
"Can't determine nREPL's version.\nPlease, update nREPL to %s."
199199
cider-required-nrepl-version)))
200200

@@ -203,10 +203,10 @@ FORMAT is a format string to compile with ARGS and display on the REPL."
203203
"Ensure that we are meeting the minimum supported version of Clojure."
204204
(if-let* ((clojure-version (cider--clojure-version)))
205205
(when (version< clojure-version cider-minimum-clojure-version)
206-
(cider-emit-manual-warning "installation/#prerequisites"
206+
(cider-emit-manual-warning "installation.html#_prerequisites"
207207
"Clojure version (%s) is not supported (minimum %s). CIDER will not work."
208208
clojure-version cider-minimum-clojure-version))
209-
(cider-emit-manual-warning "installation/#prerequisites"
209+
(cider-emit-manual-warning "installation.html#_prerequisites"
210210
"Can't determine Clojure's version. CIDER requires Clojure %s (or newer)."
211211
cider-minimum-clojure-version)))
212212

@@ -220,10 +220,10 @@ message in the REPL area."
220220
(middleware-version (nrepl-dict-get version-dict "version-string")))
221221
(cond
222222
((null middleware-version)
223-
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
223+
(cider-emit-manual-warning "troubleshooting.html#_cider_complains_of_the_cider_nrepl_version"
224224
"CIDER requires cider-nrepl to be fully functional. Some features will not be available without it!"))
225225
((not (string= middleware-version cider-required-middleware-version))
226-
(cider-emit-manual-warning "troubleshooting/#cider-complains-of-the-cider-nrepl-version"
226+
(cider-emit-manual-warning "troubleshooting.html#_cider_complains_of_the_cider_nrepl_version"
227227
"CIDER %s requires cider-nrepl %s, but you're currently using cider-nrepl %s. The version mismatch might break some functionality!"
228228
cider-version cider-required-middleware-version middleware-version)))))
229229

0 commit comments

Comments
 (0)