[crystal/de] Fix typo (#4952)

This commit is contained in:
Jan Knobloch 2024-05-19 18:09:17 +02:00 committed by GitHub
parent 54f75e008b
commit f930b9e6d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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 # {}