Add codespell configuration, fix a few other typos
This commit is contained in:
parent
35d0c36560
commit
537d93fed5
7
.codespell.ignore
Normal file
7
.codespell.ignore
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
afile
|
||||||
|
assertIn
|
||||||
|
AtLeast
|
||||||
|
AtMost
|
||||||
|
fo
|
||||||
|
SEH
|
||||||
|
Seh
|
2
.codespellrc
Normal file
2
.codespellrc
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
[codespell]
|
||||||
|
ignore-words = .codespell.ignore
|
@ -162,7 +162,7 @@ GTEST_API_ void Log(LogSeverity severity, const std::string& message,
|
|||||||
// Prints a GMOCK WARNING marker to make the warnings easily searchable.
|
// Prints a GMOCK WARNING marker to make the warnings easily searchable.
|
||||||
std::cout << "\nGMOCK WARNING:";
|
std::cout << "\nGMOCK WARNING:";
|
||||||
}
|
}
|
||||||
// Pre-pends a new-line to message if it doesn't start with one.
|
// Prepends a new-line to message if it doesn't start with one.
|
||||||
if (message.empty() || message[0] != '\n') {
|
if (message.empty() || message[0] != '\n') {
|
||||||
std::cout << "\n";
|
std::cout << "\n";
|
||||||
}
|
}
|
||||||
|
@ -1142,7 +1142,7 @@ void UniversalTersePrint(const T& value, ::std::ostream* os) {
|
|||||||
// NUL-terminated string.
|
// NUL-terminated string.
|
||||||
template <typename T>
|
template <typename T>
|
||||||
void UniversalPrint(const T& value, ::std::ostream* os) {
|
void UniversalPrint(const T& value, ::std::ostream* os) {
|
||||||
// A workarond for the bug in VC++ 7.1 that prevents us from instantiating
|
// A workaround for the bug in VC++ 7.1 that prevents us from instantiating
|
||||||
// UniversalPrinter with T directly.
|
// UniversalPrinter with T directly.
|
||||||
typedef T T1;
|
typedef T T1;
|
||||||
UniversalPrinter<T1>::Print(value, os);
|
UniversalPrinter<T1>::Print(value, os);
|
||||||
|
@ -760,7 +760,7 @@ class ParameterizedTestSuiteRegistry {
|
|||||||
};
|
};
|
||||||
|
|
||||||
// Keep track of what type-parameterized test suite are defined and
|
// Keep track of what type-parameterized test suite are defined and
|
||||||
// where as well as which are intatiated. This allows susequently
|
// where as well as which are intatiated. This allows subsequently
|
||||||
// identifying suits that are defined but never used.
|
// identifying suits that are defined but never used.
|
||||||
class TypeParameterizedTestSuiteRegistry {
|
class TypeParameterizedTestSuiteRegistry {
|
||||||
public:
|
public:
|
||||||
|
@ -712,7 +712,7 @@ bool RE::PartialMatch(const char* str, const RE& re) {
|
|||||||
void RE::Init(const char* regex) {
|
void RE::Init(const char* regex) {
|
||||||
pattern_ = regex;
|
pattern_ = regex;
|
||||||
|
|
||||||
// NetBSD (and Android, which takes its regex implemntation from NetBSD) does
|
// NetBSD (and Android, which takes its regex implementation from NetBSD) does
|
||||||
// not include the GNU regex extensions (such as Perl style character classes
|
// not include the GNU regex extensions (such as Perl style character classes
|
||||||
// like \w) in REG_EXTENDED. REG_EXTENDED is only specified to include the
|
// like \w) in REG_EXTENDED. REG_EXTENDED is only specified to include the
|
||||||
// [[:alpha:]] style character classes. Enable REG_GNU wherever it is defined
|
// [[:alpha:]] style character classes. Enable REG_GNU wherever it is defined
|
||||||
|
Loading…
Reference in New Issue
Block a user