summaryrefslogtreecommitdiff
path: root/doc/troubleshooting.md
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-10-05 15:00:15 +0300
committerBozhidar Batsov <bozhidar@batsov.com>2016-10-05 15:00:15 +0300
commite72011feff295e983d2a0b44d1acc256cf70f70f (patch)
treed2785ff2a860da8393dfaaa0a8f49e689ec94420 /doc/troubleshooting.md
parentcb2ec12357ab84c04b91b9dd17a007ae78a04afd (diff)
Improve the wording a bit
Diffstat (limited to 'doc/troubleshooting.md')
-rw-r--r--doc/troubleshooting.md10
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/troubleshooting.md b/doc/troubleshooting.md
index 09101ff2..4ed5ca25 100644
--- a/doc/troubleshooting.md
+++ b/doc/troubleshooting.md
@@ -52,12 +52,12 @@ In the REPL buffer, issue the following.
your.namespace> (ns cider.nrepl.middleware.util.instrument)
cider.nrepl.middleware.util.instrument> (def verbose-debug true)
-This will cause cider to print extensive information on the REPL buffer when you
+This will cause CIDER to print extensive information to the REPL buffer when you
try to debug an expression (e.g., with <kbd>C-u
C-M-x</kbd>). [File an issue](https://github.com/clojure-emacs/cider-repl/issues/new)
and copy this information.
-## Debugging freezes & lock ups
+## Debugging freezes & lock-ups
Sometimes a CIDER command might hang for a while (e.g. due to a bug or a
configuration issue). Such problems are super annoying, but are relatively easy
@@ -74,9 +74,9 @@ least what's being required).
## Warning saying you have to use nREPL 0.2.12+
CIDER currently requires at least nREPL 0.2.12 to work properly (there were some
-nasty bugs in older version and no support tracking where some var was defined
-in the source code). Leiningen users can add this to their `profiles.clj` to
-force the proper dependency:
+nasty bugs in older version and no support for tracking where some var was
+defined in the source code). Leiningen users can add this to their
+`profiles.clj` to force the proper dependency:
```clojure
{:repl {:dependencies [[org.clojure/tools.nrepl "0.2.12"]]}}