aboutsummaryrefslogtreecommitdiffstats
path: root/src/3rdparty/masm/wtf
diff options
context:
space:
mode:
authorLaszlo Papp <lpapp@kde.org>2014-03-05 06:42:45 +0000
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-03-06 18:07:31 +0100
commit9c182685a5209cb12c2eabe767d34bbeda480812 (patch)
treefd2fe7bf8c89ea0c947df62cbd80976d14911f15 /src/3rdparty/masm/wtf
parent3aa6a8b90f9c0e5f0ad72c462a15157b4e419ae6 (diff)
Fix a couple of typos in the documentation
Change-Id: Ie06af2e33e5adf6d56391929bd763b01e57557b0 Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
Diffstat (limited to 'src/3rdparty/masm/wtf')
-rw-r--r--src/3rdparty/masm/wtf/EnumClass.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/3rdparty/masm/wtf/EnumClass.h b/src/3rdparty/masm/wtf/EnumClass.h
index a5729b3b97..c37e056087 100644
--- a/src/3rdparty/masm/wtf/EnumClass.h
+++ b/src/3rdparty/masm/wtf/EnumClass.h
@@ -30,7 +30,7 @@
namespace WTF {
-// How to define a type safe enum list using the ENUM_CLASS macros?
+// How to define a type-safe enum list using the ENUM_CLASS macros?
// ===============================================================
// To get an enum list like this:
//
@@ -62,12 +62,12 @@ namespace WTF {
#else // !COMPILER_SUPPORTS(CXX_STRONG_ENUMS)
-// How to define a type safe enum list using the EnumClass template?
+// How to define a type-safe enum list using the EnumClass template?
// ================================================================
// Definition should be a struct that encapsulates an enum list.
// The enum list should be names Enums.
//
-// Here's an example of how to define a type safe enum named MyEnum using
+// Here's an example of how to define a type-safe enum named MyEnum using
// the EnumClass template:
//
// struct MyEnumDefinition {