summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2018-08-12 08:40:52 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2018-08-12 08:40:52 +0200
commite24ed41cd1cdf9c9f6fc963328b8ebe5f719172d (patch)
tree74761fcce4b7522f7466ea6ea735944b6d706375 /doc
parent5dd1c57b42ff4a23f15edddefd989179e9fc83cc (diff)
Update a few references to the legacy tools.nrepl
Diffstat (limited to 'doc')
-rw-r--r--doc/configuration.md2
-rw-r--r--doc/installation.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/configuration.md b/doc/configuration.md
index 4cad2a1d..62ffcacc 100644
--- a/doc/configuration.md
+++ b/doc/configuration.md
@@ -153,7 +153,7 @@ You can hide all nREPL middleware details from `cider-browse-ns*` and `cider-apr
commands by customizing the variable `cider-filter-regexps`. It should be a list of
regexps matching the pattern of namespaces you want to filter out.
-Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl")`,
+Its default value is `'("^cider.nrepl" "^refactor-nrepl" "^clojure.tools.nrepl" "^nrepl")`,
the most commonly used middleware collections/packages.
An important thing to note is that this list of regexps is passed on to the middleware
diff --git a/doc/installation.md b/doc/installation.md
index f295af33..fbb339c4 100644
--- a/doc/installation.md
+++ b/doc/installation.md
@@ -190,7 +190,7 @@ server with CIDER's own nREPL handler.
```clojure
(ns my-app
- (:require [clojure.tools.nrepl.server :as nrepl-server]
+ (:require [nrepl.server :as nrepl-server]
[cider.nrepl :refer (cider-nrepl-handler)]))
(defn -main