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’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typo with RMW_DURATION_UNSPECIFIED #375

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rmw/include/rmw/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -585,7 +585,7 @@ typedef struct RMW_PUBLIC_TYPE rmw_qos_profile_s
struct rmw_time_s deadline;
/// The age at which messages are considered expired and no longer valid
/**
* RMW_DURATION_UNSPEFICIED will use the RMW implementation's default value,
* RMW_DURATION_UNSPECIFIED will use the RMW implementation's default value,
* which may or may not be infinite.
* RMW_DURATION_INFINITE explicitly states that messages do not expire.
*/
Expand All @@ -594,7 +594,7 @@ typedef struct RMW_PUBLIC_TYPE rmw_qos_profile_s
enum rmw_qos_liveliness_policy_e liveliness;
/// The time within which the RMW node or publisher must show that it is alive
/**
* RMW_DURATION_UNSPEFICIED will use the RMW implementation's default value,
* RMW_DURATION_UNSPECIFIED will use the RMW implementation's default value,
* which may or may not be infinite.
* RMW_DURATION_INFINITE explicitly states that liveliness is not enforced.
*/
Expand Down