summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--de-de/crystal-de.html.markdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/crystal-de.html.markdown b/de-de/crystal-de.html.markdown
index b45b673c..423de5fb 100644
--- a/de-de/crystal-de.html.markdown
+++ b/de-de/crystal-de.html.markdown
@@ -170,7 +170,7 @@ set << 3
{1 => 2, 3 => 4}.class # => Hash(Int32, Int32)
{1 => 2, 'a' => 3}.class # => Hash (Int32 | Char, Int32)
-# Leere Hashes sollten einen Typen spezifieren
+# Leere Hashes sollten einen Typen spezifizieren
{} # Syntaxfehler
{} of Int32 => Int32 # {}
Hash(Int32, Int32).new # {}