summaryrefslogtreecommitdiffhomepage
path: root/whip.html.markdown
diff options
context:
space:
mode:
authorSpurlow <Spurlow@users.noreply.github.com>2015-11-02 18:49:44 +0800
committerSpurlow <Spurlow@users.noreply.github.com>2015-11-02 18:49:44 +0800
commit51db840c79b3006ba04c0492e2f9408c305b0f0d (patch)
tree87d9c565e4e6b85acab9098802459fb2e9a8a216 /whip.html.markdown
parente7a5688a30d19f904dacd65a088e0a310451eee9 (diff)
parent0e1a77c065076993a170bc2874987a6289856a9f (diff)
Merge pull request #1981 from nyanfly/whip
[whip/en] Fix typos
Diffstat (limited to 'whip.html.markdown')
-rw-r--r--whip.html.markdown8
1 files changed, 4 insertions, 4 deletions
diff --git a/whip.html.markdown b/whip.html.markdown
index 61c301a5..e7e5e427 100644
--- a/whip.html.markdown
+++ b/whip.html.markdown
@@ -9,7 +9,7 @@ filename: whip.lisp
---
Whip is a LISP-dialect made for scripting and simplified concepts.
-It has also borrowed a lot of functions and syntax from Haskell(a non-related language).
+It has also borrowed a lot of functions and syntax from Haskell (a non-related language).
These docs were written by the creator of the language himself. So is this line.
@@ -172,12 +172,12 @@ undefined ; user to indicate a value that hasn't been set
; Comprehensions
; `range` or `..` generates a list of numbers for
-; each number between it's two args.
+; each number between its two args.
(range 1 5) ; => (1 2 3 4 5)
(.. 0 2) ; => (0 1 2)
-; `map` applies it's first arg(which should be a lambda/function)
-; to each item in the following arg(which should be a list)
+; `map` applies its first arg (which should be a lambda/function)
+; to each item in the following arg (which should be a list)
(map (-> (x) (+ x 1)) (1 2 3)) ; => (2 3 4)
; Reduce