File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -242,7 +242,7 @@ ActionLib provides exactly the kind of API that we need to implement correctly a
2422421 . A non-blocking function to start the Action.
2432432 . A way to monitor the current state of execution of the Action.
2442443 . A way to retrieve the result or the error messages.
245- 4 . The avility to preempt / abort an action that is being executed.
245+ 4 . The ability to preempt / abort an action that is being executed.
246246
247247None of these operations are "blocking", therefore we don't need to spawn our own thread.
248248
@@ -282,7 +282,7 @@ class ActionClientNode : public BT::StatefulActionNode
282282 {
283283 // retrieve the result
284284 auto result = getResult();
285- // check if this result should be considered "good"
285+ // check if this result is "good"
286286 if( IsValidResult(result) ) {
287287 return NodeStatus::SUCCESS;
288288 }
You can’t perform that action at this time.
0 commit comments