Skip to content

Commit 8733d7a

Browse files
authored
Fix typo in update_interal_params (#184)
1 parent 9f1fc8f commit 8733d7a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

generate_parameter_library_py/generate_parameter_library_py/jinja_templates/cpp/parameter_library_header

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ struct StackParams {
169169
}
170170
{%- endif %}
171171
updated_params.__stamp = clock_.now();
172-
update_interal_params(updated_params);
172+
update_internal_params(updated_params);
173173
return rsl::to_parameter_result_msg({});
174174
}
175175

@@ -193,11 +193,11 @@ struct StackParams {
193193
{%- endif %}
194194

195195
updated_params.__stamp = clock_.now();
196-
update_interal_params(updated_params);
196+
update_internal_params(updated_params);
197197
}
198198

199199
private:
200-
void update_interal_params(Params updated_params) {
200+
void update_internal_params(Params updated_params) {
201201
std::lock_guard<std::mutex> lock(mutex_);
202202
params_ = updated_params;
203203
}

0 commit comments

Comments
 (0)