Skip to content

Commit f9e481d

Browse files
committed
Merge branch 'master' of github.com:clojuredocs/guides
2 parents a28d305 + 0bcd601 commit f9e481d

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

articles/content.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ A brief introduction to Counterclockwise, a Clojure plugin for Eclipse.
4747

4848
### [Emacs for Clojure Development](/articles/tutorials/emacs.html)
4949

50-
A brief introduction to Emacs, Clojure mode, SLIME and Clojure development workflow with Emacs.
50+
A brief introduction to Emacs, Clojure mode, CIDER and Clojure development workflow with Emacs.
5151

5252
### [Vim for Clojure Development](/articles/tutorials/vim_fireplace.html)
5353

articles/ecosystem/core_typed/start/introduction_and_motivation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ while making some compromises (it does the latter).
7878

7979
This might seem discouraging, but in practice core.typed will catch all type errors in your code.
8080
The problem is some Clojure idioms are so flexible it is often impossible to distinguish
81-
between indended and unintended usage.
81+
between intended and unintended usage.
8282

8383
A small example: `map` accepts either `nil` or a `Seqable` as a second argument. It is perfectly
8484
valid to provide an argument that is always `nil`, but it's probably not what the user intended.

articles/ecosystem/java_jdbc/using_sql.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -240,14 +240,14 @@ If you want to delete any rows from a table that match a simple predicate, the
240240

241241
```clojure
242242
(j/delete! db-spec :fruit ["grade < ?" 25.0])
243-
;; produces a sequence of the new of rows deleted, e.g., (1)
243+
;; produces a sequence of the number of rows deleted, e.g., (1)
244244
```
245245

246246
You can also use `execute!` for deleting rows:
247247

248248
```clojure
249249
(j/execute! db-spec ["DELETE FROM fruit WHERE grade < ?" 25.0])
250-
;; produces a sequence of the new of rows deleted, e.g., (1)
250+
;; produces a sequence of the number of rows deleted, e.g., (1)
251251
```
252252

253253
## Using transactions

articles/tutorials/introduction.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ expressions into it as you go.
4545
> previous expression evaluates to.
4646
4747
This introduction is a whirlwind tutorial of most of the basics of
48-
Clojure. Its goal is to rapidly get you acquainted with the core
48+
Clojure. Its goal is to rapidly get you familiar with the core
4949
areas of the language without wasting your time and also without getting
5050
too bogged down in details or advanced topics (the various topics will
5151
get more comprehensive coverage in the topic guides anyway).
@@ -56,7 +56,7 @@ simple language, and you're going to love it.
5656

5757

5858

59-
## Preliminaries
59+
## The Basics
6060

6161
Clojure is a general-purpose programming language, and a quite
6262
practical one at that.

0 commit comments

Comments
 (0)