Skip to content

Commit 2759f13

Browse files
committed
typo
1 parent 0bcb185 commit 2759f13

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/asynchronous_nodes.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -242,7 +242,7 @@ ActionLib provides exactly the kind of API that we need to implement correctly a
242242
1. A non-blocking function to start the Action.
243243
2. A way to monitor the current state of execution of the Action.
244244
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.
246246

247247
None 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
}

0 commit comments

Comments
 (0)