From 425cdb6b72ac818fe3fe1b731d02ed26d6c84d8c Mon Sep 17 00:00:00 2001 From: Francois Gouget Date: Tue, 23 Oct 2018 15:43:31 +0200 Subject: [PATCH] crypt32/tests: Fix a typo and reword a comment. Signed-off-by: Francois Gouget Signed-off-by: Alexandre Julliard --- dlls/crypt32/tests/oid.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlls/crypt32/tests/oid.c b/dlls/crypt32/tests/oid.c index 5247a4aad5c..ae03bba90e8 100644 --- a/dlls/crypt32/tests/oid.c +++ b/dlls/crypt32/tests/oid.c @@ -652,8 +652,8 @@ static void test_registerOIDInfo(void) ok(!info2, "should fail\n"); SetLastError(0xdeadbeef); - /* while succeeds next call does't write anything to registry under Windows - * because of dwGroupId == 0. + /* While it succeeds, the next call does not write anything to the + * registry on Windows because dwGroupId == 0. */ ret = CryptRegisterOIDInfo(&info1, 0); ok(ret, "got %u\n", GetLastError());