Skip to content

Commit c4f3f72

Browse files
author
Colin Robertson
authored
Merge pull request #660 from drvoss/patch-23
Update how-to-convert-between-various-string-types.md
2 parents a95efce + b89e1a3 commit c4f3f72

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/text/how-to-convert-between-various-string-types.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@ int main()
143143
wcout << orig << _T(" (wchar_t *)") << endl;
144144

145145
// 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.
146+
// the length of the original string and add 1 to it to
147+
// account for the terminating null character.
148148
size_t origsize = wcslen(orig) + 1;
149149
size_t convertedChars = 0;
150150

0 commit comments

Comments
 (0)