Skip to content

Commit 217ec38

Browse files
author
Bozhidar Batsov
committed
Correct several docstrings
1 parent 89bacf1 commit 217ec38

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nrepl-client.el

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -181,28 +181,28 @@ it is not. The name will also include the connection port if
181181

182182
(defun nrepl-connection-buffer-name (&optional project-dir host port)
183183
"Return the name of the connection buffer.
184-
PROJECT-DIR, PORT and HOST are as in `/nrepl-make-buffer-name'."
184+
PROJECT-DIR, HOST and PORT are as in `/nrepl-make-buffer-name'."
185185
(nrepl--make-hidden-name
186186
(nrepl-make-buffer-name nrepl-connection-buffer-name-template
187187
project-dir host port)))
188188

189189
(defun nrepl-server-buffer-name (&optional project-dir host port)
190190
"Return the name of the server buffer.
191-
PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name'."
191+
PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name'."
192192
(nrepl--make-hidden-name
193193
(nrepl-make-buffer-name nrepl-server-buffer-name-template
194194
project-dir host port)))
195195

196196
(defun nrepl-on-connection-buffer-name (&optional project-dir host port)
197197
"Return the name of the on-connection buffer.
198-
PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name'."
198+
PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name'."
199199
(nrepl--make-hidden-name
200200
(nrepl-make-buffer-name nrepl-on-connection-buffer-name-template
201201
project-dir host port)))
202202

203203
(defun nrepl-decoder-buffer-name (&optional project-dir host port)
204204
"Return the name of the buffer used for bencode decoding.
205-
PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name'."
205+
PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name'."
206206
;; this might go away if bdecode is rewriten by direct decoding of the sring
207207
(nrepl--make-hidden-name
208208
(nrepl-make-buffer-name nrepl-decoder-buffer-name-template
@@ -928,7 +928,7 @@ This is bound for the duration of the handling of that message")
928928

929929
(defun nrepl-create-connection-buffer (&optional project-dir host port)
930930
"Create an nREPL connection buffer.
931-
PROJECT-DIR, PORT and HOST are as in `nrepl-make-buffer-name'."
931+
PROJECT-DIR, HOST and PORT are as in `nrepl-make-buffer-name'."
932932
(let ((buffer (generate-new-buffer (nrepl-connection-buffer-name project-dir host port))))
933933
(with-current-buffer buffer
934934
(buffer-disable-undo)

0 commit comments

Comments
 (0)