Commit f9b04a72 authored by Francois Gouget's avatar Francois Gouget Committed by Alexandre Julliard

gdi32: Fix the spelling of some comments.

parent 0bbc9b83
...@@ -68,7 +68,7 @@ extern const unsigned short bidi_direction_table[] DECLSPEC_HIDDEN; ...@@ -68,7 +68,7 @@ extern const unsigned short bidi_direction_table[] DECLSPEC_HIDDEN;
Note: Note:
The list of bidirectional character types here is not grouped the The list of bidirectional character types here is not grouped the
same way as the table 3-7, since the numberic values for the types same way as the table 3-7, since the numeric values for the types
are chosen to keep the state and action tables compact. are chosen to keep the state and action tables compact.
------------------------------------------------------------------------*/ ------------------------------------------------------------------------*/
enum directions enum directions
......
...@@ -4801,7 +4801,7 @@ static void test_GetGlyphOutline(void) ...@@ -4801,7 +4801,7 @@ static void test_GetGlyphOutline(void)
old_hfont = SelectObject(hdc, hfont); old_hfont = SelectObject(hdc, hfont);
/* expected to ignore superfluous bytes (sigle-byte character) */ /* expected to ignore superfluous bytes (single-byte character) */
ret = GetGlyphOutlineA(hdc, 0x8041, GGO_BITMAP, &gm, 0, NULL, &mat); ret = GetGlyphOutlineA(hdc, 0x8041, GGO_BITMAP, &gm, 0, NULL, &mat);
ret2 = GetGlyphOutlineA(hdc, 0x41, GGO_BITMAP, &gm2, 0, NULL, &mat); ret2 = GetGlyphOutlineA(hdc, 0x41, GGO_BITMAP, &gm2, 0, NULL, &mat);
ok(ret == ret2 && memcmp(&gm, &gm2, sizeof gm) == 0, "%d %d\n", ret, ret2); ok(ret == ret2 && memcmp(&gm, &gm2, sizeof gm) == 0, "%d %d\n", ret, ret2);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment