From ad30bf473ba851db746e425ff2b7a0cf672e872f Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Fri, 30 Jan 2015 17:52:03 -0700 Subject: [PATCH] Correct spelling of "suppress" --- test/is_copy_assignable.cpp | 2 +- test/is_copy_constructible_test.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/is_copy_assignable.cpp b/test/is_copy_assignable.cpp index 5171b32..d61628f 100644 --- a/test/is_copy_assignable.cpp +++ b/test/is_copy_assignable.cpp @@ -22,7 +22,7 @@ struct has { }; // MSVC can not generate neither default constructor, nor assignment operator, -// nor copy constructor for `has2` type. Supressing those warnings is essential, +// nor copy constructor for `has2` type. Suppressing those warnings is essential, // because we treat warnings as errors in those tests #if (defined _MSC_VER) # pragma warning( push ) diff --git a/test/is_copy_constructible_test.cpp b/test/is_copy_constructible_test.cpp index 23b58a4..cbc4030 100644 --- a/test/is_copy_constructible_test.cpp +++ b/test/is_copy_constructible_test.cpp @@ -20,7 +20,7 @@ struct has { }; // MSVC can not generate neither default constructor, nor assignment operator, -// nor copy constructor for `has2` type. Supressing those warnings is essential, +// nor copy constructor for `has2` type. Suppressing those warnings is essential, // because we treat warnings as errors in those tests #if (defined _MSC_VER) # pragma warning( push )