File tree 5 files changed +5
-5
lines changed 5 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
1072
1072
# defined cascading style sheet that is included after the standard style sheets
1073
1073
# created by doxygen. Using this option one can overrule certain style aspects.
1074
1074
# 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.
1076
1076
# Doxygen will copy the style sheet file to the output directory. For an example
1077
1077
# see the documentation.
1078
1078
# This tag requires that the tag GENERATE_HTML is set to YES.
Original file line number Diff line number Diff line change @@ -1072,7 +1072,7 @@ HTML_STYLESHEET =
1072
1072
# defined cascading style sheet that is included after the standard style sheets
1073
1073
# created by doxygen. Using this option one can overrule certain style aspects.
1074
1074
# 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.
1076
1076
# Doxygen will copy the style sheet file to the output directory. For an example
1077
1077
# see the documentation.
1078
1078
# This tag requires that the tag GENERATE_HTML is set to YES.
Original file line number Diff line number Diff line change 80
80
81
81
// In c++11 the override keyword allows you to explicitly define that a function
82
82
// 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.
84
84
#if __cplusplus >= 201103L
85
85
# define JSONCPP_OVERRIDE override
86
86
# define JSONCPP_NOEXCEPT noexcept
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ class JSONCPP_DEPRECATED("Use StreamWriter instead") JSON_API Writer {
152
152
*
153
153
* The JSON document is written in a single line. It is not intended for 'human'
154
154
*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.
156
156
* \sa Reader, Value
157
157
* \deprecated Use StreamWriterBuilder.
158
158
*/
Original file line number Diff line number Diff line change @@ -270,7 +270,7 @@ TestResult& checkStringEqual(TestResult& result,
270
270
return new Test##FixtureType##name (); \
271
271
} \
272
272
\
273
- public: /* overidden from TestCase */ \
273
+ public: /* overridden from TestCase */ \
274
274
const char * testName () const JSONCPP_OVERRIDE { return #FixtureType " /" #name; } \
275
275
void runTestCase () JSONCPP_OVERRIDE; \
276
276
}; \
You can’t perform that action at this time.
0 commit comments