summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJan Knobloch <116908874+jk4e@users.noreply.github.com>2024-05-19 18:09:17 +0200
committerGitHub <noreply@github.com>2024-05-19 10:09:17 -0600
commitf930b9e6d0c6a9c5fad9b3db21c088d05b3b45c5 (patch)
treee93c202e6b31dfb018f428a92b623f5c104e0fd7
parent54f75e008b6cb8d00d52346882dfdbaf2366e88a (diff)
[crystal/de] Fix typo (#4952)
-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 # {}