summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2016-04-25 21:32:47 -0700
committerBozhidar Batsov <bozhidar@batsov.com>2016-04-25 21:32:47 -0700
commit7786fad27c27cf14e6ca58aafb9bdbb9a2e952c5 (patch)
tree3d98c8e213134a5f03b19a90cc845483df8a0ce3
parent9361f3b252d9772c446abedf81e817e983b954e2 (diff)
[#1718] Update a variable name in the docs
-rw-r--r--CHANGELOG.md2
-rw-r--r--doc/configuration.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 06e40c02..7bfedfd6 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -579,7 +579,7 @@ race condition bug in `cider-restart`.
by managing `*print-length*`. `cider-repl-print-length` can be used
to set a limit, and `cider-repl-toggle-print-length-limiting` can be
used to toggle the enforcement of the limit.
-* New config `cider-interactive-eval-result-prefix` controls the prefix displayed before results
+* New config `cider-eval-result-prefix` controls the prefix displayed before results
from interactive evaluation displayed in the minibuffer.
* New config `cider-repl-result-prefix` controls the prefix displayed before results in the REPL.
* Font-lock interactive evaluation results as Clojure code.
diff --git a/doc/configuration.md b/doc/configuration.md
index 7e559f9e..45328df9 100644
--- a/doc/configuration.md
+++ b/doc/configuration.md
@@ -75,7 +75,7 @@ make the hidden buffers visible. They'll always be visible in
* Change the result prefix for interactive evaluation (by default it's `=> `):
```el
-(setq cider-interactive-eval-result-prefix ";; => ")
+(setq cider-eval-result-prefix ";; => ")
```
To remove the prefix altogether just set it to an empty string(`""`).