Skip to content

Commit

Permalink
Fix typo (#73)
Browse files Browse the repository at this point in the history
Co-authored-by: Timon Engelke <[email protected]>
  • Loading branch information
timonegk and timonegk authored Apr 22, 2024
1 parent 0d1d854 commit 650fdf5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/reach_study.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,7 +387,7 @@ void runReachStudy(const YAML::Node& config, const std::string& config_name, con
display->showEnvironment();
display->showResults(db.results.back());

auto handleSignal = [](int /*sig*/) { throw std::runtime_error("Reach study temrinated"); };
auto handleSignal = [](int /*sig*/) { throw std::runtime_error("Reach study terminated"); };
signal(SIGINT, handleSignal);
signal(SIGTERM, handleSignal);

Expand Down

0 comments on commit 650fdf5

Please sign in to comment.