Update string literal example

Both examples were using double quotes, this change the second example to single quotes
This commit is contained in:
Thiago Lages de Alencar
2022-12-30 06:37:25 -03:00
committed by GitHub
parent 32a3cd2a29
commit f2d0428c0c

View File

@@ -298,7 +298,7 @@ Literals
+--------------------------+----------------------------------------+
| ``3.14``, ``58.1e-10`` | Floating-point number (real) |
+--------------------------+----------------------------------------+
| ``"Hello"``, ``"Hi"`` | Strings |
| ``"Hello"``, ``'Hi'`` | Strings |
+--------------------------+----------------------------------------+
| ``"""Hello"""`` | Multiline string |
+--------------------------+----------------------------------------+