Skip to content

Commit

Permalink
Merge pull request EzoeRyou#133 from mmiyano/mmiyano-patch-3
Browse files Browse the repository at this point in the history
Update 042-string-intro.md
  • Loading branch information
EzoeRyou authored Oct 12, 2019
2 parents 9d92b0c + 78ebf70 commit 332338d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 042-string-intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -414,7 +414,7 @@ char32_t s3[] = U"𦥑" ;

~~~cpp
char8_t s1[5] = { 0xf0, 0xa6, 0xa5, 0x91, 0x0 } ;
char16_t s2[2] = { 0xd85a, 0xdd51, 0x0 } ;
char16_t s2[3] = { 0xd85a, 0xdd51, 0x0 } ;
char32_t s3[2] = { 0x26951, 0x0 } ;
~~~
Expand Down

0 comments on commit 332338d

Please sign in to comment.