Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/Concepts/Basic/About-Actions.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ For instance, consider an action to calculate the Fibonacci sequence with the fo
---
int32[] sequence
---
int32[] sequence
int32[] partial_sequence

The action server is the entity that receives this message, starts calculating the sequence up to ``order`` (providing feedback along the way), and finally returns a full result in ``sequence``.

Expand Down
2 changes: 1 addition & 1 deletion source/Concepts/Basic/About-Interfaces.rst
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ For instance, the ``Fibonacci`` action definition contains the following:
---
int32[] sequence
---
int32[] sequence
int32[] partial_sequence

This is an action definition where the action client is sending a single ``int32`` field representing the number of Fibonacci steps to take, and expecting the action server to produce an array of ``int32`` containing the complete steps.
Along the way, the action server may also provide an intermediate array of ``int32`` containing the steps accomplished up until a certain point.