Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 73eb848

Browse files
author
Ryan Neufeld
committed
Some spelling corrections
1 parent c4eedb9 commit 73eb848

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

kitchen-sink/custom-data-structures/red-black-trees-part-i.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,4 @@ In <<sec_red_black_part_ii>> we'll address this very issue.
192192

193193
* See http://en.wikipedia.org/wiki/Red%E2%80%93black_tree[Red Black Trees on Wikipedia] for a more traditional take on this interesting data structure.
194194

195-
* For the functional approach used in this recipce, the book http://www.amazon.com/Purely-Functional-Structures-Chris-Okasaki/dp/0521663504/ref=sr_1_1?ie=UTF8&qid=1376914321&sr=8-1&keywords=purely+functional+data+structures[Purely Functional Data Structures] is an excellent source. It deals with how to efficiently implement data structures in a functional setting. The author chose to use ML and Haskell but its concepts are transferable to Clojure, as demonstrated above.
195+
* For the functional approach used in this recipe, the book http://www.amazon.com/Purely-Functional-Structures-Chris-Okasaki/dp/0521663504/ref=sr_1_1?ie=UTF8&qid=1376914321&sr=8-1&keywords=purely+functional+data+structures[Purely Functional Data Structures] is an excellent source. It deals with how to efficiently implement data structures in a functional setting. The author chose to use ML and Haskell but its concepts are transferable to Clojure, as demonstrated above.

kitchen-sink/parser-with-core-match/parser-with-core-match.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ for brevity.]. Note the special `([...] :seq)` syntax for matching
7272
over lists, used here to represent a `fn` expression. Also notice
7373
that to match on the literal `fn`, it had to be quoted in the match
7474
pattern. Interestingly, since the `body` expression should also be
75-
accepted by this parser, it makes a self-recurdive call,
75+
accepted by this parser, it makes a self-recursive call,
7676
`(simple-clojure-parser body)`, in the right-hand side of the match
7777
pattern.
7878

local-io/console/parse-command-line-arguments/parse-command-line-arguments.asciidoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ you have to differentiate the run arguments from your own arguments using +--+:
6161
----
6262

6363
the +cli+ function is the main utility you will use.
64-
It recived a list of args and will return a vector containing:
64+
It received a list of args and will return a vector containing:
6565
* A hash of all your keyword arguments
6666
* A vector of all non key word trailing argumenta
6767
* A generated help banner

webapps/liberator/basic.asciidoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,11 +77,11 @@ the available media types is the empty set, so it needs to be set to
7777
something, otherwise Liberator will return a `406 Not Acceptable`
7878
response. In this recipe it is set to respond with `text/plain` as the
7979
MIME type. The default response is "OK", which you will see if you run
80-
the reciped and point a browser at http://localhost:3000.
80+
the recipe and point a browser at http://localhost:3000.
8181

8282
===== See Also
8383

8484
* <<sec_webapps_ring_introduction>> for information on setting up
8585
Ring.
8686
* <<sec_webapps_compojure_compojure>> for more information on
87-
Compojure routes.
87+
Compojure routes.

0 commit comments

Comments
 (0)