From 24af5fec86861ac61d7db43ec1190ac6b2e827f8 Mon Sep 17 00:00:00 2001 From: Henning Classen Date: Tue, 12 Jan 2021 09:43:24 +0100 Subject: [PATCH] engine: Fix minor spelling issues --- engine/src/stack.hpp | 2 +- tests/test_engine_json_schema.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/engine/src/stack.hpp b/engine/src/stack.hpp index 60abb28b1..d14d24c30 100644 --- a/engine/src/stack.hpp +++ b/engine/src/stack.hpp @@ -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")}, diff --git a/tests/test_engine_json_schema.json b/tests/test_engine_json_schema.json index c948e7a9a..6ac787c0b 100644 --- a/tests/test_engine_json_schema.json +++ b/tests/test_engine_json_schema.json @@ -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"