diff options
author | ven <vendethiel@hotmail.fr> | 2016-12-14 19:59:16 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-14 19:59:16 +0100 |
commit | a70f8469c44ac4a985c91ade6d142e7a83c5de04 (patch) | |
tree | 9a35383116af34c3d95eca366a10ebb60ca52f75 /purescript.html.markdown | |
parent | 66e541e9e55d89d705319c2cf0c01e6319be817b (diff) |
Random -> Safe
Diffstat (limited to 'purescript.html.markdown')
-rw-r--r-- | purescript.html.markdown | 2 |
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] |