Misc-typos (#741)

Found in downstream CMake repo via `codespell -q 3`
This commit is contained in:
luzpaz 2018-02-08 20:05:50 -05:00 committed by Christopher Dunn
parent 07a324fb14
commit 5b45aa55ca
5 changed files with 5 additions and 5 deletions

View File

@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
# defined cascading style sheet that is included after the standard style sheets # defined cascading style sheet that is included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects. # created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the # This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefor more robust against future updates. # standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet file to the output directory. For an example # Doxygen will copy the style sheet file to the output directory. For an example
# see the documentation. # see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.

View File

@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
# defined cascading style sheet that is included after the standard style sheets # defined cascading style sheet that is included after the standard style sheets
# created by doxygen. Using this option one can overrule certain style aspects. # created by doxygen. Using this option one can overrule certain style aspects.
# This is preferred over using HTML_STYLESHEET since it does not replace the # This is preferred over using HTML_STYLESHEET since it does not replace the
# standard style sheet and is therefor more robust against future updates. # standard style sheet and is therefore more robust against future updates.
# Doxygen will copy the style sheet file to the output directory. For an example # Doxygen will copy the style sheet file to the output directory. For an example
# see the documentation. # see the documentation.
# This tag requires that the tag GENERATE_HTML is set to YES. # This tag requires that the tag GENERATE_HTML is set to YES.

View File

@ -80,7 +80,7 @@
// In c++11 the override keyword allows you to explicitly define that a function // In c++11 the override keyword allows you to explicitly define that a function
// is intended to override the base-class version. This makes the code more // is intended to override the base-class version. This makes the code more
// managable and fixes a set of common hard-to-find bugs. // manageable and fixes a set of common hard-to-find bugs.
#if __cplusplus >= 201103L #if __cplusplus >= 201103L
# define JSONCPP_OVERRIDE override # define JSONCPP_OVERRIDE override
# define JSONCPP_NOEXCEPT noexcept # define JSONCPP_NOEXCEPT noexcept

View File

@ -152,7 +152,7 @@ public:
* *
* The JSON document is written in a single line. It is not intended for 'human' * The JSON document is written in a single line. It is not intended for 'human'
*consumption, *consumption,
* but may be usefull to support feature such as RPC where bandwith is limited. * but may be useful to support feature such as RPC where bandwidth is limited.
* \sa Reader, Value * \sa Reader, Value
* \deprecated Use StreamWriterBuilder. * \deprecated Use StreamWriterBuilder.
*/ */

View File

@ -270,7 +270,7 @@ TestResult& checkStringEqual(TestResult& result,
return new Test##FixtureType##name(); \ return new Test##FixtureType##name(); \
} \ } \
\ \
public: /* overidden from TestCase */ \ public: /* overridden from TestCase */ \
const char* testName() const JSONCPP_OVERRIDE { return #FixtureType "/" #name; } \ const char* testName() const JSONCPP_OVERRIDE { return #FixtureType "/" #name; } \
void runTestCase() JSONCPP_OVERRIDE; \ void runTestCase() JSONCPP_OVERRIDE; \
}; \ }; \