Skip to content

Commit 6bba677

Browse files
Update _docs/tutorials/core/programming_rcl_rclc/index.md
Co-authored-by: Ralph Lange <ralph-lange@users.noreply.github.com>
1 parent c8e3207 commit 6bba677

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • _docs/tutorials/core/programming_rcl_rclc

_docs/tutorials/core/programming_rcl_rclc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -385,7 +385,7 @@ if (rc != RCL_RET_OK) {
385385
printf("Error in rclc_executor_add_timer.\n");
386386
}
387387
```
388-
A key feature of the rclc-Executor is, that the order of these `rclc-executor-add-* `-functions matters. The order in which these functions are called, defines the static processing order of the callbacks when the spin-function of the executor is running.
388+
A key feature of the rclc Executor is that the order of these `rclc-executor-add-* `-functions matters. The order in which these functions are called defines the static processing order of the callbacks when the spin-function of the executor is running.
389389
390390
In this example, the timer was added to the executor before the subscription. Therefore, if the timer is ready and also a new message for the subscription is available, then the timer is executed first and after it the subscription. Such a behavior cannot be defined currently with the rclcpp Executor and is useful to implement a deterministic execution semantics.
391391

0 commit comments

Comments
 (0)