Skip to content

Commit dc8f99f

Browse files
author
Colin Robertson
committed
Add missing word
1 parent fcb5998 commit dc8f99f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/cpp/string-and-character-literals-cpp.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ char c6 = '\x0050'; // 'P'
165165
char c7 = '\x0pqr'; // C4305, C4309, truncates to 'r'
166166
```
167167

168-
If a wide character literal prefixed with `L` contains a multicharacter sequence, the value is taken from the first character, and the compiler raises warning C4066. Subsequent characters are ignored, unlike the behavior of the equivalent ordinary character literal.
168+
If a wide character literal prefixed with `L` contains a multicharacter sequence, the value is taken from the first character, and the compiler raises warning C4066. Subsequent characters are ignored, unlike the behavior of the equivalent ordinary multicharacter literal.
169169

170170
```cpp
171171
wchar_t w1 = L'\100'; // L'@'

0 commit comments

Comments
 (0)