Skip to content

Commit 64b1f34

Browse files
committed
excess "
1 parent 3d9475f commit 64b1f34

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book_src/opening_a_win32_window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ This happens with functions that process textual data, as well as with structs a
3232
In this case of `WNDCLASSA` / `WNDCLASSW`, a window class has, as part of it, a menu name as well as a class name.
3333
These names are textual, and so we get both an `A` and a `W` version.
3434

35-
The `A` and `W` letters come from the two types of string that the windows API lets you use: ANSI strings and "wide" strings".
35+
The `A` and `W` letters come from the two types of string that the windows API lets you use: ANSI strings and "wide" strings.
3636
* ANSI strings use C's `char` type.
3737
They don't have a specified encoding.
3838
If you store anything other than ASCII data in an ANSI string, the results vary based on context.

0 commit comments

Comments
 (0)