1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-10-01 16:56:51 +02:00

[julia/en] Fixed Spelling Mistake

This commit is contained in:
chappers
2013-12-19 16:23:25 +11:00
parent 7ca48c4709
commit e7b43c1ba3

View File

@@ -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"