Skip to content

Commit bf8f53b

Browse files
committed
Fix a bunch of typos
1 parent 82741db commit bf8f53b

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

cider-jar.el

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232

3333

3434
(defvar cider-jar-cache-dir (expand-file-name "cider-cache" user-emacs-directory)
35-
"Location where we store dowloaded files for later use.")
35+
"Location where we store downloaded files for later use.")
3636

3737
(defvar cider-jar-content-cache (make-hash-table :test #'equal)
3838
"Nested hash table of jar-path -> file-path -> bool.

codespell.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
edn
22
hist
3+
juxt
4+
nd

doc/modules/ROOT/pages/about/compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The minimum required Clojure version is currently derived using data
3333
from the
3434
https://clojure.org/news/2019/02/04/state-of-clojure-2020[State of
3535
Clojure] survey. In general we consider a Clojure release eligible for
36-
dropping once its usage drops bellow 5%, but we'd not drop support for
36+
dropping once its usage drops below 5%, but we'd not drop support for
3737
any release just for the sake of doing it. We'd do it only if
3838
this would lessen the maintenance burden or open up the possibility for
3939
big CIDER improvements.

doc/modules/ROOT/pages/cljs/figwheel.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Using Figwheel
22
:experimental:
33

4-
Figwheel is one of the most popular ClojureScript REPLs today. Bellow you'll
4+
Figwheel is one of the most popular ClojureScript REPLs today. Below you'll
55
instructions how to setup and use it with CIDER.
66

77
NOTE: There are two versions of Figwheel out there - the legacy https://github.com/bhauman/lein-figwheel[figwheel] and

doc/modules/ROOT/pages/testing/running_tests.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ This uses the convention of prepending 'test-' to the namespace name."
120120
If you have selectors you want
121121
automatically applied, you can set the variables
122122
`cider-test-default-include-selectors` and `cider-test-default-exclude-selectors`
123-
to a list of stings to use. The following is an example of setting the default exclude
123+
to a list of strings to use. The following is an example of setting the default exclude
124124
selectors so that tests tagged as "integration" or "flakey" don't run.
125125

126126
[source,lisp]

test/cider-common-tests.el

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
(it "handles nil input"
3636
(expect (cider-abbreviate-ns nil) :to-equal nil))
3737

38-
(it "handles empty string intput"
38+
(it "handles empty string input"
3939
(expect (cider-abbreviate-ns "") :to-equal ""))
4040

4141
(it "shortens all ns segments but the last"
@@ -48,7 +48,7 @@
4848
(it "handles nil input"
4949
(expect (cider-last-ns-segment nil) :to-equal nil))
5050

51-
(it "handles empty string intput"
51+
(it "handles empty string input"
5252
(expect (cider-last-ns-segment "") :to-equal ""))
5353

5454
(it "drops all ns segments but the last"

0 commit comments

Comments
 (0)