summaryrefslogtreecommitdiffhomepage
path: root/de-de
diff options
context:
space:
mode:
authorBoris Verkhovskiy <boris.verk@gmail.com>2024-04-08 07:04:27 -0700
committerBoris Verkhovskiy <boris.verk@gmail.com>2024-04-08 07:04:27 -0700
commit82e62882163c5804fb4ad629ebcb58f363052bf7 (patch)
tree003b66cfc76ab43dc4ccbc13d1770d88d0da9b13 /de-de
parent868df8c4e8c32af8f1af9fca34e3e0dcb7be252a (diff)
[crystal/de] fix quote
Diffstat (limited to 'de-de')
-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 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