summaryrefslogtreecommitdiff
path: root/nrepl-repl.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@tradeo.com>2013-10-12 00:02:06 +0300
committerBozhidar Batsov <bozhidar@tradeo.com>2013-10-12 00:02:06 +0300
commitb8387a2f946d663ca6730b3104850132cb9edc26 (patch)
tree34ad87107ed60c538289f4a8a1546a80f1d6d424 /nrepl-repl.el
parentd4795e3d1bed855b2473ec122bd1edf04bd8cd80 (diff)
Terminology fixes
Diffstat (limited to 'nrepl-repl.el')
-rw-r--r--nrepl-repl.el10
1 files changed, 5 insertions, 5 deletions
diff --git a/nrepl-repl.el b/nrepl-repl.el
index f954b15c..b271d784 100644
--- a/nrepl-repl.el
+++ b/nrepl-repl.el
@@ -32,27 +32,27 @@
(defface nrepl-prompt-face
'((t (:inherit font-lock-keyword-face)))
- "Face for the prompt in the nREPL client."
+ "Face for the prompt in the REPL buffer."
:group 'nrepl)
(defface nrepl-output-face
'((t (:inherit font-lock-string-face)))
- "Face for output in the nREPL client."
+ "Face for output in the REPL buffer."
:group 'nrepl)
(defface nrepl-error-face
'((t (:inherit font-lock-string-face)))
- "Face for errors in the nREPL client."
+ "Face for errors in the REPL buffer."
:group 'nrepl)
(defface nrepl-input-face
'((t (:bold t)))
- "Face for previous input in the nREPL client."
+ "Face for previous input in the REPL buffer."
:group 'nrepl)
(defface nrepl-result-face
'((t ()))
- "Face for the result of an evaluation in the nREPL client."
+ "Face for the result of an evaluation in the REPL buffer."
:group 'nrepl)
(defcustom nrepl-popup-stacktraces-in-repl nil