Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 5d64dc9

Browse files
committed
fix three typos: inpyt->input, know->known
1 parent aa05482 commit 5d64dc9

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/tutorial_07_legacy.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ int main()
7070
auto MoveToWrapperWithLambda = [&move_to](TreeNode& parent_node) -> NodeStatus
7171
{
7272
Point3D goal;
73-
// thanks to paren_node, you can access easily the inpyt and output ports.
73+
// thanks to paren_node, you can access easily the input and output ports.
7474
parent_node.getInput("goal", goal);
7575

7676
bool res = move_to.go( goal );

docs/tutorial_08_additional_args.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ We will just use the word _"parameter"_ for the rest of the tutorial.
1616
Even if, theoretically, these parameters can be passed using Input Ports,
1717
that would be the wrong way to do it if:
1818
19-
- The parameters are know at _deployment-time_.
19+
- The parameters are known at _deployment-time_.
2020
- The parameters don't change at _run-time_.
2121
- The parameters don't need to be from the _XML_.
2222

examples/t07_wrap_legacy.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ int main()
6767
auto MoveToWrapperWithLambda = [&move_to](TreeNode& parent_node) -> NodeStatus
6868
{
6969
Point3D goal;
70-
// thanks to paren_node, you can access easily the inpyt and output ports.
70+
// thanks to paren_node, you can access easily the input and output ports.
7171
parent_node.getInput("goal", goal);
7272

7373
bool res = move_to.go( goal );

0 commit comments

Comments
 (0)