summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorNami-Doc <vendethiel@hotmail.fr>2013-12-19 03:00:22 -0800
committerNami-Doc <vendethiel@hotmail.fr>2013-12-19 03:00:22 -0800
commita1fca8b508d662d7a274e4b717952e584841a812 (patch)
treebbb1088ef1d6c3c43c880af66a8f4fac216ff860
parent7ca48c47098c35fb449d63812be2a620adf5ec60 (diff)
parente7b43c1ba3239d7e13fb5fa40a7dd44fba6a48de (diff)
Merge pull request #459 from chappers/julia
[julia/en] Fixed Spelling Mistake
-rw-r--r--julia.html.markdown2
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"