Module: wine
Branch: master
Commit: 44468e85369bd8e36c9e68d71718c12ff6976225
URL: http://source.winehq.org/git/wine.git/?a=commit;h=44468e85369bd8e36c9e68d71…
Author: Francois Gouget <fgouget(a)free.fr>
Date: Tue Apr 19 06:14:05 2016 +0200
tools: Assorted comment spelling fixes.
Signed-off-by: Francois Gouget <fgouget(a)free.fr>
Signed-off-by: Alexandre Julliard <julliard(a)winehq.org>
---
tools/make_unicode | 2 +-
tools/widl/typelib_struct.h | 2 +-
tools/winebuild/utils.c | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/tools/make_unicode b/tools/make_unicode
index 1a9026b..a089e23 100755
--- a/tools/make_unicode
+++ b/tools/make_unicode
@@ -1393,7 +1393,7 @@ sub dump_scripts($)
print OUTPUT "/* generated from $UNIDATA/Scripts.txt */\n";
print OUTPUT "/* DO NOT EDIT!! */\n\n";
- # Inherited was consumed by Unknown, we don't need it as a separate enum memeber
+ # Inherited was consumed by Unknown, we don't need it as a separate enum member
delete $scripts{"Inherited"};
print OUTPUT "enum unicode_script_id {\n";
foreach my $script (sort { $scripts{$a} <=> $scripts{$b} } keys %scripts)
diff --git a/tools/widl/typelib_struct.h b/tools/widl/typelib_struct.h
index 42faac8..0d9f8eb 100644
--- a/tools/widl/typelib_struct.h
+++ b/tools/widl/typelib_struct.h
@@ -215,7 +215,7 @@ typedef struct {
/* after this may follow an array with default value pointers if the
* appropriate bit in the FKCCIC field has been set:
- * INT oDefautlValue[nrargs];
+ * INT oDefaultValue[nrargs];
*/
/* Parameter info one per argument*/
diff --git a/tools/winebuild/utils.c b/tools/winebuild/utils.c
index 9308e83..6e01f1a 100644
--- a/tools/winebuild/utils.c
+++ b/tools/winebuild/utils.c
@@ -871,7 +871,7 @@ int get_cpu_from_name( const char *name )
* align on an 8-byte boundary you'd say
* .align 3
*
- * The reason gas is written this way is that it's trying to mimick
+ * The reason gas is written this way is that it's trying to mimic
* native assemblers for the various architectures it runs on. gas
* provides other directives that work consistently across
* architectures, but of course we want to work on all arches with or