File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
include/behaviortree_cpp/controls Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ namespace BT
3232class FallbackNode : public ControlNode
3333{
3434public:
35- FallbackNode (const std::string& name, bool make_aynch = false );
35+ FallbackNode (const std::string& name, bool make_asynch = false );
3636
3737 virtual ~FallbackNode () override = default ;
3838
Original file line number Diff line number Diff line change 1515
1616namespace BT
1717{
18- FallbackNode::FallbackNode (const std::string& name, bool make_aynch )
18+ FallbackNode::FallbackNode (const std::string& name, bool make_asynch )
1919 : ControlNode::ControlNode(name, {})
2020 , current_child_idx_(0 )
2121 , all_skipped_(true )
22- , asynch_(make_aynch )
22+ , asynch_(make_asynch )
2323{
2424 if (asynch_)
2525 setRegistrationID (" AsyncFallback" );
You can’t perform that action at this time.
0 commit comments