We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a95efce + b89e1a3 commit c4f3f72Copy full SHA for c4f3f72
docs/text/how-to-convert-between-various-string-types.md
@@ -143,8 +143,8 @@ int main()
143
wcout << orig << _T(" (wchar_t *)") << endl;
144
145
// Convert the wchar_t string to a char* string. Record
146
- //.the length of the original string and add 1 to it to
147
- //.account for the terminating null character.
+ // the length of the original string and add 1 to it to
+ // account for the terminating null character.
148
size_t origsize = wcslen(orig) + 1;
149
size_t convertedChars = 0;
150
0 commit comments