Skip to content

Commit f2bb6cc

Browse files
Merge pull request #1231 from KyrychukD/patch-1
Fix a typo in ch03
2 parents 76fa546 + 8337f36 commit f2bb6cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

second-edition/src/ch03-02-data-types.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ fn main() {
191191

192192
Rust’s `char` type represents a Unicode Scalar Value, which means it can
193193
represent a lot more than just ASCII. Accented letters; Chinese, Japanese, and
194-
Korean ideographs; emoji; and zero-width spaces are all valid `char` types in
194+
Korean ideographs; emoji; and zero-width spaces are all valid `char` values in
195195
Rust. Unicode Scalar Values range from `U+0000` to `U+D7FF` and `U+E000` to
196196
`U+10FFFF` inclusive. However, a “character” isn’t really a concept in Unicode,
197197
so your human intuition for what a “character” is may not match up with what a

0 commit comments

Comments
 (0)