summaryrefslogtreecommitdiffhomepage
path: root/crystal.html.markdown
diff options
context:
space:
mode:
authorArnaud Fernandés <TechMagister@users.noreply.github.com>2016-12-23 01:06:39 +0100
committerven <vendethiel@hotmail.fr>2016-12-23 01:06:39 +0100
commit601aae91ae16ff1968899f08f29f10433daad92d (patch)
treecc3be1c0a1ab47336f162c224de5d18a5f0d90cf /crystal.html.markdown
parent0074c8f351fcbeb91ea126526704121b27a60f95 (diff)
[crystal/fr] French language for crystal (#2602)
* Add Crystal/FR * Spell checking
Diffstat (limited to 'crystal.html.markdown')
-rw-r--r--crystal.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/crystal.html.markdown b/crystal.html.markdown
index 97375f9b..1449ff81 100644
--- a/crystal.html.markdown
+++ b/crystal.html.markdown
@@ -110,7 +110,7 @@ sentence == "question?" #=> false : Bool
[1, 2, 3].class #=> Array(Int32)
[1, "hello", 'x'].class #=> Array(Int32 | String | Char)
-# Empty arrays should define a type
+# Empty arrays should specify a type
[] # Syntax error: for empty arrays use '[] of ElementType'
[] of Int32 #=> [] : Array(Int32)
Array(Int32).new #=> [] : Array(Int32)