Skip to content

Commit

Permalink
Fix typo in update_interal_params (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
sea-bass authored Mar 20, 2024
1 parent 9f1fc8f commit 8733d7a
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ struct StackParams {
}
{%- endif %}
updated_params.__stamp = clock_.now();
update_interal_params(updated_params);
update_internal_params(updated_params);
return rsl::to_parameter_result_msg({});
}

Expand All @@ -193,11 +193,11 @@ struct StackParams {
{%- endif %}

updated_params.__stamp = clock_.now();
update_interal_params(updated_params);
update_internal_params(updated_params);
}

private:
void update_interal_params(Params updated_params) {
void update_internal_params(Params updated_params) {
std::lock_guard<std::mutex> lock(mutex_);
params_ = updated_params;
}
Expand Down

0 comments on commit 8733d7a

Please sign in to comment.