Skip to content

Commit

Permalink
volitile -> volatile (#724)
Browse files Browse the repository at this point in the history
Signed-off-by: Emerson Knapp <eknapp@amazon.com>
Signed-off-by: Siddharth Kucheria <kucheria@usc.edu>
  • Loading branch information
emersonknapp authored and skucheria committed Jul 13, 2019
1 parent 6917cfd commit 8d6d1e9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion rclcpp/include/rclcpp/qos.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ class RCLCPP_PUBLIC QoS

/// Set the durability setting to volatile.
QoS &
volitile();
volatile();

/// Set the durability setting to transient local.
QoS &
Expand Down
2 changes: 1 addition & 1 deletion rclcpp/src/rclcpp/qos.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ QoS::durability(rmw_qos_durability_policy_t durability)
}

QoS &
QoS::volitile()
QoS::volatile()
{
return this->durability(RMW_QOS_POLICY_DURABILITY_VOLATILE);
}
Expand Down

0 comments on commit 8d6d1e9

Please sign in to comment.