diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-08 07:04:27 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-08 07:04:27 -0700 |
commit | 82e62882163c5804fb4ad629ebcb58f363052bf7 (patch) | |
tree | 003b66cfc76ab43dc4ccbc13d1770d88d0da9b13 /de-de | |
parent | 868df8c4e8c32af8f1af9fca34e3e0dcb7be252a (diff) |
[crystal/de] fix quote
Diffstat (limited to 'de-de')
-rw-r--r-- | de-de/crystal-de.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/de-de/crystal-de.html.markdown b/de-de/crystal-de.html.markdown index 2c1dda72..b45b673c 100644 --- a/de-de/crystal-de.html.markdown +++ b/de-de/crystal-de.html.markdown @@ -82,7 +82,7 @@ true.class # => Bool "s".class # => String # Strings sind unveränderlich -s = 'hello, " # => "hello, " : String +s = "hello, " # => "hello, " : String s.object_id # => 1234667712 : UInt64 s += "Crystal" # => "hello, Crystal" : String s.object_id # => 142528472 : UInt64 |