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
242
242
1 . A non-blocking function to start the Action.
243
243
2 . A way to monitor the current state of execution of the Action.
244
244
3 . 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.
246
246
247
247
None of these operations are "blocking", therefore we don't need to spawn our own thread.
248
248
@@ -282,7 +282,7 @@ class ActionClientNode : public BT::StatefulActionNode
282
282
{
283
283
// retrieve the result
284
284
auto result = getResult();
285
- // check if this result should be considered "good"
285
+ // check if this result is "good"
286
286
if( IsValidResult(result) ) {
287
287
return NodeStatus::SUCCESS;
288
288
}
You can’t perform that action at this time.
0 commit comments