Skip to content

Commit 20debc8

Browse files
committed
Fix several typos
1 parent 14eb022 commit 20debc8

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1307,7 +1307,7 @@ the option `cider-repl-use-clojure-font-lock`.
13071307

13081308
* Added new interactive command `cider-read-and-eval` (bound to `C-c M-:` in `cider-mode`).
13091309
* Added new interactive command `cider-eval-last-sexp-to-repl` (`C-c M-e`). The command will output the result
1310-
of the evaluated code to the REPL buffer, so you can easily play with the output there afterwords.
1310+
of the evaluated code to the REPL buffer, so you can easily play with the output there afterwards.
13111311
* Added new interactive command `cider-insert-last-sexp-in-repl` (`C-c M-p`).
13121312
* Added new interactive command `cider-eval-last-expression-and-replace` (`C-c C-w`).
13131313
* Implemented REPL shortcuts, triggered by pressing `,` at the start of a REPL input line (similar to the ones in SLIME).

cider-common.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ in the container, the alist would be `((\"/src\" \"~/projects/foo/src\"))."
287287
(defun cider--translate-path (path direction)
288288
"Attempt to translate the PATH in the given DIRECTION.
289289
Looks at `cider-path-translations' for (container . host) alist of path
290-
prefixes and translates PATH from container to host or viceversa depending on
290+
prefixes and translates PATH from container to host or vice-versa depending on
291291
whether DIRECTION is 'from-nrepl or 'to-nrepl."
292292
(seq-let [from-fn to-fn path-fn] (cond ((eq direction 'from-nrepl) '(car cdr identity))
293293
((eq direction 'to-nrepl) '(cdr car expand-file-name)))

test/cider-eldoc-tests.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@
174174
(with-temp-buffer
175175
(clojure-mode)
176176
(save-excursion (insert "(map inc [1 2 3])"))
177-
;; whem cursor is on map, display its eldoc
177+
;; when cursor is on map, display its eldoc
178178
(search-forward "map")
179179
(expect (cider-eldoc-info-in-current-sexp) :to-equal
180180
'("eldoc-info" ("clojure.core" "map" (("f") ("f" "coll"))) "thing" "map" "pos" 0))
@@ -195,7 +195,7 @@
195195
(with-temp-buffer
196196
(clojure-mode)
197197
(save-excursion (insert "(map inc [1 2 3])"))
198-
;; whem cursor is on map, display its eldoc
198+
;; when cursor is on map, display its eldoc
199199
(search-forward "map")
200200
(expect (cider-eldoc-info-in-current-sexp) :to-equal
201201
'("eldoc-info" ("clojure.core" "map" (("f") ("f" "coll"))) "thing" "map" "pos" 0))

0 commit comments

Comments
 (0)