Module: wine
Branch: master
Commit: f466fb4e53770dc03310669de2b529463daee96e
URL: https://source.winehq.org/git/wine.git/?a=commit;h=f466fb4e53770dc03310669d…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Aug 23 16:44:20 2018 +0200
ntdll/tests: Spelling fixes in comments.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/ntdll/tests/rtl.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ntdll/tests/rtl.c b/dlls/ntdll/tests/rtl.c
index 07fa1cd..5fe72ec 100644
--- a/dlls/ntdll/tests/rtl.c
+++ b/dlls/ntdll/tests/rtl.c
@@ -1458,9 +1458,9 @@ static const struct
NTSTATUS res;
int terminator_offset;
int ip[8];
- /* win_broken: older versions of windows do not handle this correct
+ /* win_broken: older versions of windows do not handle this correctly
ex_fail: Ex function does need the string to be terminated, non-Ex does not.
- ex_skip: test doesnt make sense for Ex (f.e. it's invalid for non-Ex but valid for Ex) */
+ ex_skip: test doesn't make sense for Ex (f.e. it's invalid for non-Ex but valid for Ex) */
enum { normal_6, win_broken_6 = 1, ex_fail_6 = 2, ex_skip_6 = 4 } flags;
} ipv6_tests[] =
{
@@ -2284,7 +2284,7 @@ static void test_RtlIpv6StringToAddressEx(void)
/* sanity check */
ok(sizeof(ip) == sizeof(USHORT)* 8, "sizeof(ip)\n");
- /* first we run all ip related tests, to make sure someone didnt accidentally reimplement instead of re-use. */
+ /* first we run all ip related tests, to make sure someone didn't accidentally reimplement instead of re-use. */
for (i = 0; i < ARRAY_SIZE(ipv6_tests); i++)
{
ULONG scope = 0xbadf00d;
Module: wine
Branch: master
Commit: fb6b48d3e2dada84792adf7c27a63d964e231128
URL: https://source.winehq.org/git/wine.git/?a=commit;h=fb6b48d3e2dada84792adf7c…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Aug 23 16:43:57 2018 +0200
xcopy: Spelling fix in a comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
programs/xcopy/xcopy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/xcopy/xcopy.c b/programs/xcopy/xcopy.c
index 616c7d2..eb8c3f0 100644
--- a/programs/xcopy/xcopy.c
+++ b/programs/xcopy/xcopy.c
@@ -872,7 +872,7 @@ static int XCOPY_ParseCommandLine(WCHAR *suppliedsource,
goto out;
}
- /* Unless overriden above, skip over the '/' and the first character */
+ /* Unless overridden above, skip over the '/' and the first character */
if (rest == NULL) rest = &word[2];
/* By now, rest should point either to the null after the
Module: wine
Branch: master
Commit: 67bd05669d98ac3aa38e600389d25e0657ee55ca
URL: https://source.winehq.org/git/wine.git/?a=commit;h=67bd05669d98ac3aa38e6003…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Thu Aug 23 16:43:49 2018 +0200
winevulkan: Spelling fix in a perl comment.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
dlls/winevulkan/make_vulkan | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan
index 3be6a8d..5b0f82c 100755
--- a/dlls/winevulkan/make_vulkan
+++ b/dlls/winevulkan/make_vulkan
@@ -2165,7 +2165,7 @@ class VkGenerator(object):
f.write(define.definition())
for handle in self.registry.handles:
- # For backwards compatiblity also create definitions for aliases.
+ # For backward compatibility also create definitions for aliases.
# These types normally don't get pulled in as we use the new types
# even in legacy functions if they are aliases.
if handle.is_required() or handle.is_alias():