Skip to content

Commit 8176afc

Browse files
Fix docstring
1 parent 4832a88 commit 8176afc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

include/control_toolbox/pid.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -400,7 +400,7 @@ class Pid
400400
/*!
401401
* \brief Return PID error terms for the controller.
402402
* \param pe The proportional error.
403-
* \param ie The integral error.
403+
* \param ie The weighted integral error.
404404
* \param de The derivative error.
405405
*/
406406
void get_current_pid_errors(double & pe, double & ie, double & de);

include/control_toolbox/pid_ros.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@ class PidROS
217217
/*!
218218
* \brief Return PID error terms for the controller.
219219
* \param pe[out] The proportional error.
220-
* \param ie[out] The integral error.
220+
* \param ie[out] The weighted integral error.
221221
* \param de[out] The derivative error.
222222
*/
223223
void get_current_pid_errors(double & pe, double & ie, double & de);

0 commit comments

Comments
 (0)