File tree Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Expand file tree Collapse file tree 6 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change 11edn
22hist
3+ juxt
4+ nd
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ The minimum required Clojure version is currently derived using data
3333from the
3434https://clojure.org/news/2019/02/04/state-of-clojure-2020[State of
3535Clojure] 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
3737any release just for the sake of doing it. We'd do it only if
3838this would lessen the maintenance burden or open up the possibility for
3939big CIDER improvements.
Original file line number Diff line number Diff line change 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
55instructions how to setup and use it with CIDER.
66
77NOTE: There are two versions of Figwheel out there - the legacy https://github.com/bhauman/lein-figwheel[figwheel] and
Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ This uses the convention of prepending 'test-' to the namespace name."
120120If you have selectors you want
121121automatically 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
124124selectors so that tests tagged as "integration" or "flakey" don't run.
125125
126126[source,lisp]
Original file line number Diff line number Diff line change 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"
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"
You can’t perform that action at this time.
0 commit comments