Skip to content

Commit 3c5f1d4

Browse files
committed
Fix a bunch of typos
1 parent 10b9b19 commit 3c5f1d4

11 files changed

+13
-13
lines changed

cider-common.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ otherwise, nil."
277277
(defcustom cider-path-translations nil
278278
"Alist of path prefixes to path prefixes.
279279
Useful to intercept the location of a path in a container (or virtual
280-
machine) and translate to the oringal location. If your project is located
280+
machine) and translate to the original location. If your project is located
281281
at \"~/projects/foo\" and the src directory of foo is mounted at \"/src\"
282282
in the container, the alist would be `((\"/src\" \"~/projects/foo/src\"))."
283283
:type '(alist :key-type string :value-type string)

cider-debug.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ If nil, don't list available keys at all."
9393
:package-version '(cider . "0.10.0"))
9494

9595
(defcustom cider-debug-use-overlays t
96-
"Whether to higlight debugging information with overlays.
96+
"Whether to highlight debugging information with overlays.
9797
Takes the same possible values as `cider-use-overlays', but only applies to
9898
values displayed during debugging sessions.
9999
To control the overlay that lists possible keys above the current function,

cider-eval.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ CONTINUE is an optional continuation function."
263263
(defun cider-request:sideloader-start (&optional connection tooling)
264264
"Perform the nREPL \"sideloader-start\" op.
265265
If CONNECTION is nil, use `cider-current-repl'.
266-
If TOOLING is truthy then the operation is perfomed over the tooling
266+
If TOOLING is truthy then the operation is performed over the tooling
267267
session, rather than the regular session."
268268
(cider-ensure-op-supported "sideloader-start")
269269
(cider-nrepl-send-request `("op" "sideloader-start")
@@ -324,7 +324,7 @@ If CONNECTION is nil, use `cider-current-repl'."
324324
- If CONNECTION is nil, use `cider-current-repl'.
325325
- If TOOLING it truthy, use the tooling session instead of the main session.
326326
- CONTINUE is an optional continuation function, which will be called when the
327-
add-middleware op has finished succesfully."
327+
add-middleware op has finished successfully."
328328
(cider-nrepl-send-request `("op" "add-middleware"
329329
"middleware" ,middlewares)
330330
(cider-add-middleware-handler continue)

cider-inspector.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -375,7 +375,7 @@ MAX-COLL-SIZE if non nil."
375375
(when (eq cider-inspector-last-command 'cider-inspector-pop)
376376
(setq cider-inspector-last-command nil)
377377
;; Prevents error message being displayed when we try to pop
378-
;; from the top-level of a data struture
378+
;; from the top-level of a data structure
379379
(when cider-inspector-location-stack
380380
(goto-char (pop cider-inspector-location-stack))))
381381

cider-macroexpansion.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ ARG is passed along to `undo-only'."
8383
(undo-only arg)))
8484

8585
(defvar cider-last-macroexpand-expression nil
86-
"Specify the last macroexpansion preformed.
86+
"Specify the last macroexpansion performed.
8787
This variable specifies both what was expanded and the expander.")
8888

8989
(defun cider-macroexpand-expr (expander expr)

cider-mode.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ If invoked with a prefix ARG eval the expression after inserting it."
270270
(cider-insert-in-repl (cider-defun-at-point) arg))
271271

272272
(defun cider-insert-region-in-repl (start end &optional arg)
273-
"Insert the curent region in the REPL buffer.
273+
"Insert the current region in the REPL buffer.
274274
START and END represent the region's boundaries.
275275
If invoked with a prefix ARG eval the expression after inserting it."
276276
(interactive "rP")

cider-repl-history.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ it's turned on."
348348
(defun cider-repl-history-target-overlay-at (position &optional no-error)
349349
"Return overlay at POSITION that has property `cider-repl-history-target'.
350350
If no such overlay, raise an error unless NO-ERROR is true, in which
351-
case retun nil."
351+
case return nil."
352352
(let ((ovs (overlays-at (point))))
353353
(catch 'cider-repl-history-target-overlay-at
354354
(dolist (ov ovs)

cider-repl.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ If NEWLINE is true then add a newline at the end of the input."
10271027

10281028
(defun cider-repl-return (&optional end-of-input)
10291029
"Evaluate the current input string, or insert a newline.
1030-
Send the current input ony if a whole expression has been entered,
1030+
Send the current input only if a whole expression has been entered,
10311031
i.e. the parenthesis are matched.
10321032
When END-OF-INPUT is non-nil, send the input even if the parentheses
10331033
are not balanced."
@@ -1150,7 +1150,7 @@ With a prefix argument CLEAR-REPL it will clear the entire REPL buffer instead."
11501150
(interactive)
11511151
;; TODO: Improve the boundaries detecting logic
11521152
;; probably it should be based on text properties
1153-
;; the current implemetation will clear warnings as well
1153+
;; the current implementation will clear warnings as well
11541154
(let ((start (point-min))
11551155
(end (save-excursion
11561156
(goto-char (point-min))

cider-stacktrace.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -415,7 +415,7 @@ grouped with a suppressed error type."
415415

416416
(defun cider-stacktrace-cycle-cause (num &optional level)
417417
"Update element NUM of `cider-stacktrace-cause-visibility'.
418-
If LEVEL is specified, it is useed, otherwise its current value is incremented.
418+
If LEVEL is specified, it is used, otherwise its current value is incremented.
419419
When it reaches 3, it wraps to 0."
420420
(let ((level (or level (1+ (elt cider-stacktrace-cause-visibility num)))))
421421
(aset cider-stacktrace-cause-visibility num (mod level 3))

nrepl-client.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1109,7 +1109,7 @@ match groups:
11091109
(emacs-bug-46284/when-27.1-windows-nt
11101110
;; There is a bug in emacs 27.1 (since fixed) that sets all EVENT
11111111
;; descriptions for signals to "unknown signal". We correct this by
1112-
;; reseting it back to its canonical value.
1112+
;; resetting it back to its canonical value.
11131113
(when (eq (process-status process) 'signal)
11141114
(cl-case (process-exit-status process)
11151115
;; SIGHUP==1 emacs nt/inc/ms-w32.h

0 commit comments

Comments
 (0)