diff options
author | chappers <chapm0n.siu@gmail.com> | 2013-12-19 16:23:25 +1100 |
---|---|---|
committer | chappers <chapm0n.siu@gmail.com> | 2013-12-19 16:23:25 +1100 |
commit | e7b43c1ba3239d7e13fb5fa40a7dd44fba6a48de (patch) | |
tree | bbb1088ef1d6c3c43c880af66a8f4fac216ff860 | |
parent | 7ca48c47098c35fb449d63812be2a620adf5ec60 (diff) |
[julia/en] Fixed Spelling Mistake
-rw-r--r-- | julia.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/julia.html.markdown b/julia.html.markdown index 4869e207..f1e1a4a2 100644 --- a/julia.html.markdown +++ b/julia.html.markdown @@ -83,7 +83,7 @@ false # A string can be indexed like an array of characters "This is a string"[1] #=> 'T' # Julia indexes from 1 # However, this is will not work well for UTF8 strings, -# so iterating over strings is reccommended (map, for loops, etc). +# so iterating over strings is recommended (map, for loops, etc). # $ can be used for string interpolation: "2 + 2 = $(2 + 2)" #=> "2 + 2 = 4" |