summaryrefslogtreecommitdiff
path: root/cider-debug.el
diff options
context:
space:
mode:
authorBozhidar Batsov <bozhidar@batsov.com>2015-10-25 11:29:06 +0200
committerBozhidar Batsov <bozhidar@batsov.com>2015-10-25 11:29:06 +0200
commit6f847d19a9491061126fd4bbf738a5fc18476bdc (patch)
tree4452f1127beb2b7220f35e126a9a925b6892c260 /cider-debug.el
parentae56b10061e1d210fa049ac965452e08fec3f4a8 (diff)
Fix a few docstrings
Diffstat (limited to 'cider-debug.el')
-rw-r--r--cider-debug.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/cider-debug.el b/cider-debug.el
index 384ad195..03a89011 100644
--- a/cider-debug.el
+++ b/cider-debug.el
@@ -375,7 +375,7 @@ specific message."
(ignore-errors (cider--debug-mode -1)))
(defun cider--debug-quit ()
- "Send a :quit reply to the debugger. Used in hooks."
+ "Send a :quit reply to the debugger. Used in hooks."
(when cider--debug-mode
(cider-debug-mode-send-reply ":quit")
(message "Quitting debug session")))
@@ -474,7 +474,7 @@ sexp."
(defun cider--handle-debug (response)
"Handle debugging notification.
RESPONSE is a message received from the nrepl describing the input
-needed. It is expected to contain at least \"key\", \"input-type\", and
+needed. It is expected to contain at least \"key\", \"input-type\", and
\"prompt\", and possibly other entries depending on the input-type."
(nrepl-dbind-response response (debug-value key coor code file line column ns original-id
input-type prompt inspect)
@@ -521,7 +521,7 @@ needed. It is expected to contain at least \"key\", \"input-type\", and
;;; User commands
;;;###autoload
(defun cider-debug-defun-at-point ()
- "Instrument the top-level expression at point.
+ "Instrument the \"top-level\" expression at point.
If it is a defn, dispatch the instrumented definition. Otherwise,
immediately evaluate the instrumented expression.