From 9d5e17654db43d4dff9c32488d8f0c93877e2092 Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 16 Mar 2021 10:32:02 +0100 Subject: [PATCH] dwrite: Fix the case of FreeType in a comment. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/dwrite/opentype.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dwrite/opentype.c b/dlls/dwrite/opentype.c index a74c9712b6a..6e5624c622a 100644 --- a/dlls/dwrite/opentype.c +++ b/dlls/dwrite/opentype.c @@ -6484,7 +6484,7 @@ BOOL opentype_has_kerning_pairs(struct dwrite_fontface *fontface) count = GET_BE_WORD(header->table_count); offset = sizeof(*header); - /* Freetype limits table count this way. */ + /* FreeType limits table count this way. */ count = min(count, 32); /* Check for presence of format 0 subtable with horizontal coverage. */