Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix (signal_handler.hpp): spelling #2356

Merged
merged 1 commit into from Nov 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions rclcpp/src/rclcpp/signal_handler.hpp
Expand Up @@ -75,7 +75,7 @@ class SignalHandler final
bool
install(SignalHandlerOptions signal_handler_options = SignalHandlerOptions::All);

/// Uninstall the signal handler for SIGINT/SIGTERM and join the dedicated singal handling
/// Uninstall the signal handler for SIGINT/SIGTERM and join the dedicated signal handling
/// thread.
/**
* Also restores the previous signal handler.
Expand Down Expand Up @@ -189,7 +189,7 @@ class SignalHandler final

// Whether or not a signal has been received.
std::atomic_bool signal_received_ = false;
// A thread to which singal handling tasks are deferred.
// A thread to which signal handling tasks are deferred.
std::thread signal_handler_thread_;

// A mutex used to synchronize the install() and uninstall() methods.
Expand Down