Skip to content

Commit 7b9b8bc

Browse files
committed
fix typos #721
1 parent b3c3c25 commit 7b9b8bc

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/behaviortree_cpp/bt_factory.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ inline TreeNodeManifest CreateManifest(const std::string& ID,
7474
* }
7575
*
7676
* IMPORTANT: this function MUST be declared in a cpp file, NOT a header file.
77-
* In your cake, you must add the definition [BT_PLUGIN_EXPORT] with:
77+
* You must add the definition [BT_PLUGIN_EXPORT] in CMakeLists.txt using:
7878
*
7979
* target_compile_definitions(my_plugin_target PRIVATE BT_PLUGIN_EXPORT )
8080

src/bt_factory.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ Tree BehaviorTreeFactory::createTreeFromText(const std::string& text,
397397
if(!_p->parser->registeredBehaviorTrees().empty()) {
398398
std::cout << "WARNING: You executed BehaviorTreeFactory::createTreeFromText "
399399
"after registerBehaviorTreeFrom[File/Text].\n"
400-
"This is NOTm probably, what you want to do.\n"
400+
"This is NOT, probably, what you want to do.\n"
401401
"You should probably use BehaviorTreeFactory::createTree, instead"
402402
<< std::endl;
403403
}
@@ -414,7 +414,7 @@ Tree BehaviorTreeFactory::createTreeFromFile(const std::filesystem::path &file_p
414414
if(!_p->parser->registeredBehaviorTrees().empty()) {
415415
std::cout << "WARNING: You executed BehaviorTreeFactory::createTreeFromFile "
416416
"after registerBehaviorTreeFrom[File/Text].\n"
417-
"This is NOTm probably, what you want to do.\n"
417+
"This is NOT, probably, what you want to do.\n"
418418
"You should probably use BehaviorTreeFactory::createTree, instead"
419419
<< std::endl;
420420
}

0 commit comments

Comments
 (0)