summaryrefslogtreecommitdiffhomepage
path: root/purescript.html.markdown
diff options
context:
space:
mode:
Diffstat (limited to 'purescript.html.markdown')
-rw-r--r--purescript.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/purescript.html.markdown b/purescript.html.markdown
index b413a9e3..19346760 100644
--- a/purescript.html.markdown
+++ b/purescript.html.markdown
@@ -85,7 +85,7 @@ head [1,2,3] -- Just (1)
tail [3,2,1] -- Just ([2,1])
init [1,2,3] -- Just ([1,2])
last [3,2,1] -- Just (1)
--- Random access - indexing
+-- Array access - indexing
[3,4,5,6,7] !! 2 -- Just (5)
-- Range
1..5 -- [1,2,3,4,5]