Skip to content

Commit

Permalink
engine: Fix minor spelling issues
Browse files Browse the repository at this point in the history
  • Loading branch information
clssn authored and cassava committed Feb 2, 2021
1 parent ca63130 commit 24af5fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion engine/src/stack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ struct EngineConf : public Confable {
{"polling_interval", make_schema(&polling_interval, "milliseconds to sleep when polling for next state")},
{"watchdog", Struct{
{"mode", make_schema(&watchdog_mode, "modus operandi of watchdog [one of: off, log, abort, kill]")},
{"default_timeout", make_schema(&watchdog_default_timeout, "default timeout if not overriden, 0 for no timeout")},
{"default_timeout", make_schema(&watchdog_default_timeout, "default timeout if not overridden, 0 for no timeout")},
{"state_timeouts", make_schema(&watchdog_state_timeouts, "timeout specific to a given state, 0 for no timeout").unique_properties(false)},
}},
{"keep_alive", make_schema(&keep_alive, "keep simulation alive after termination")},
Expand Down
2 changes: 1 addition & 1 deletion tests/test_engine_json_schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,7 @@
"additionalProperties": false,
"properties": {
"default_timeout": {
"description": "default timeout if not overriden, 0 for no timeout",
"description": "default timeout if not overridden, 0 for no timeout",
"maximum": 9223372036854775807,
"minimum": -9223372036854775808,
"type": "integer"
Expand Down

0 comments on commit 24af5fe

Please sign in to comment.