From e970a99b017c654918f84b411ce61103fa811ea0 Mon Sep 17 00:00:00 2001 From: Thomas Timm Andersen Date: Thu, 8 Oct 2015 17:04:31 +0200 Subject: [PATCH] fixed typo in error string --- src/ur_ros_wrapper.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ur_ros_wrapper.cpp b/src/ur_ros_wrapper.cpp index ba135d1..f1620ca 100644 --- a/src/ur_ros_wrapper.cpp +++ b/src/ur_ros_wrapper.cpp @@ -211,7 +211,7 @@ private: } if (!traj_is_finite()) { - result_.error_string = "Received a goal with infinites or NaNs"; + result_.error_string = "Received a goal with infinities or NaNs"; result_.error_code = result_.INVALID_GOAL; gh.setRejected(result_, result_.error_string); print_error(result_.error_string);