Merge pull request #130 from wingrez/patch-1

fix ch3.5.1 translation error
This commit is contained in:
chai2010 2022-10-06 15:01:08 +08:00 committed by GitHub
commit eaef4fd12d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -71,7 +71,7 @@ s[0] = 'L' // compile error: cannot assign to s[0]
字符串值也可以用字符串面值方式编写,只要将一系列字节序列包含在双引号内即可: 字符串值也可以用字符串面值方式编写,只要将一系列字节序列包含在双引号内即可:
``` ```
"Hello, 世界" "Hello, world"
``` ```
![](../images/ch3-04.png) ![](../images/ch3-04.png)