From 5f0b7390e99fb5b26a78ee5d99266d75c810baad Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Thu, 20 Oct 2022 16:22:23 +0200 Subject: [PATCH] d3d10core/tests: Fix the spelling of a comment. --- dlls/d3d10core/tests/d3d10core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/d3d10core/tests/d3d10core.c b/dlls/d3d10core/tests/d3d10core.c index 74f689630eb..cd14371197f 100644 --- a/dlls/d3d10core/tests/d3d10core.c +++ b/dlls/d3d10core/tests/d3d10core.c @@ -4813,7 +4813,7 @@ static void test_pipeline_statistics_query(void) get_query_data(query, &data, sizeof(data)); /* WARP devices randomly return all-zeroed structures as if the draw did not happen. Flushing and - * sleeping a second before ending the query reduces the likelyhood of hitting the bug a lot, but + * sleeping a second before ending the query reduces the likelihood of hitting the bug a lot, but * does not eliminate it entirely. To make things work reliably ignore such broken results. */ if (is_warp_device(device) && !memcmp(&data, &zero_data, sizeof(data))) {