-
Notifications
You must be signed in to change notification settings - Fork 205
Fix spelling and grammar issues in Task Server documentation #683
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
base: master
Are you sure you want to change the base?
Fix spelling and grammar issues in Task Server documentation #683
Conversation
@@ -3,24 +3,24 @@ | |||
Adding a New Nav2 Task Server | |||
############################# | |||
|
|||
A nav2 task server consists of server side logic to complete different types of requests, usually called by the autonomy system or through the Behavior Tree Navigator. In this guide, we will discuss the core components needed to add a new task server to Nav2 (ex. Controller, Behavior, Smoother, Planner Servers). Namely, how to set up your new Lifecycle-Component Node for launch and state management and the communication of semantically meaningful error codes (if necessary). | |||
A nav2 task server consists of server-side logic logic to complete different types of requests, usually called by the autonomy system or through the Behavior Tree Navigator. In this guide, we will discuss the core components needed to add a new task server to Nav2 (ex. Controller, Behavior, Smoother, Planner Servers). Namely, how to set up your new Lifecycle-Component Node for launch and state management and the communication of semantically meaningful error codes (if necessary). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Logic twice?
|
||
While this tutorial does not cover how to add the complementary Behavior Tree Node to interact with this new Task Server, that is covered at length in :ref:`writing_new_nbt_plugin` so this Task Server can be invoked in the BTs in BT Navigator. | ||
While this tutorial does not cover how to add the complementary Behavior Tree Node to interact with this new Task Server; that is covered at length in :ref:`writing_new_nbt_plugin` so this Task Server can be invoked in the BTs in BT Navigator. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this should stay a ,
given its the second half of the sentence after "While ..., ...."
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're absolutely right about the comma ! just fixed that, along with the repetition of logic. Should be all good now
@Clement795 please sign off with DCO - click on the failed job to see how. Then I can merge! |
Signed-off-by: Clement795 <clement.lepretre4@gmail.com>
Signed-off-by: Clement795 <clement.lepretre4@gmail.com>
cf156f6
to
c71c0d0
Compare
Hi,
I just completed the tutorial and noticed a few spelling errors in the documentation. I've gone ahead and corrected them to improve clarity and consistency. The changes mainly involve minor typos, such as the incorrect usage of "errors codes" instead of "error codes".
Let me know if you need any further adjustments or clarifications.
Thanks!