Skip to content

Commit

Permalink
Update 042-string-intro.md
Browse files Browse the repository at this point in the history
Fix the size of array.
  • Loading branch information
mmiyano authored Oct 2, 2019
1 parent ffed2c3 commit 78ebf70
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 78ebf70

Please sign in to comment.