Skip to content

Commit 5b45aa5

Browse files
luzpazcdunn2001
authored andcommitted
Found in downstream CMake repo via `codespell -q 3`
1 parent 07a324f commit 5b45aa5

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

doc/doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
10721072
# defined cascading style sheet that is included after the standard style sheets
10731073
# created by doxygen. Using this option one can overrule certain style aspects.
10741074
# This is preferred over using HTML_STYLESHEET since it does not replace the
1075-
# standard style sheet and is therefor more robust against future updates.
1075+
# standard style sheet and is therefore more robust against future updates.
10761076
# Doxygen will copy the style sheet file to the output directory. For an example
10771077
# see the documentation.
10781078
# This tag requires that the tag GENERATE_HTML is set to YES.

doc/web_doxyfile.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
10721072
# defined cascading style sheet that is included after the standard style sheets
10731073
# created by doxygen. Using this option one can overrule certain style aspects.
10741074
# This is preferred over using HTML_STYLESHEET since it does not replace the
1075-
# standard style sheet and is therefor more robust against future updates.
1075+
# standard style sheet and is therefore more robust against future updates.
10761076
# Doxygen will copy the style sheet file to the output directory. For an example
10771077
# see the documentation.
10781078
# This tag requires that the tag GENERATE_HTML is set to YES.

include/json/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080

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

include/json/writer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ class JSONCPP_DEPRECATED("Use StreamWriter instead") JSON_API Writer {
152152
*
153153
* The JSON document is written in a single line. It is not intended for 'human'
154154
*consumption,
155-
* but may be usefull to support feature such as RPC where bandwith is limited.
155+
* but may be useful to support feature such as RPC where bandwidth is limited.
156156
* \sa Reader, Value
157157
* \deprecated Use StreamWriterBuilder.
158158
*/

src/test_lib_json/jsontest.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -270,7 +270,7 @@ TestResult& checkStringEqual(TestResult& result,
270270
return new Test##FixtureType##name(); \
271271
} \
272272
\
273-
public: /* overidden from TestCase */ \
273+
public: /* overridden from TestCase */ \
274274
const char* testName() const JSONCPP_OVERRIDE { return #FixtureType "/" #name; } \
275275
void runTestCase() JSONCPP_OVERRIDE; \
276276
}; \

0 commit comments

Comments
 (0)