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.
1 parent 3d9475f commit 64b1f34Copy full SHA for 64b1f34
book_src/opening_a_win32_window.md
@@ -32,7 +32,7 @@ This happens with functions that process textual data, as well as with structs a
32
In this case of `WNDCLASSA` / `WNDCLASSW`, a window class has, as part of it, a menu name as well as a class name.
33
These names are textual, and so we get both an `A` and a `W` version.
34
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".
+The `A` and `W` letters come from the two types of string that the windows API lets you use: ANSI strings and "wide" strings.
36
* ANSI strings use C's `char` type.
37
They don't have a specified encoding.
38
If you store anything other than ASCII data in an ANSI string, the results vary based on context.
0 commit comments