Skip to content

Commit 37e3688

Browse files
Correct the incorrect comments in generic_client.hpp (#2662)
Signed-off-by: Barry Xu <[email protected]>
1 parent 9b65494 commit 37e3688

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

rclcpp/include/rclcpp/generic_client.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ namespace rclcpp
3636
class GenericClient : public ClientBase
3737
{
3838
public:
39-
using Request = void *; // Serialized data pointer of request message
40-
using Response = void *; // Serialized data pointer of response message
39+
using Request = void *; // Deserialized data pointer of request message
40+
using Response = void *; // Deserialized data pointer of response message
4141

4242
using SharedResponse = std::shared_ptr<void>;
4343

0 commit comments

Comments
 (0)