Skip to content

Commit c8d3481

Browse files
authored
pybind11 definition doc typo fixes. (#1270)
Signed-off-by: Tomoya.Fujita <[email protected]>
1 parent 32e4eae commit c8d3481

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

rclpy/src/rclpy/action_client.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ class ActionClient : public Destroyable, public std::enable_shared_from_this<Act
230230
Node node_;
231231
std::shared_ptr<rcl_action_client_t> rcl_action_client_;
232232
};
233-
/// Define a pybind11 wrapper for an rcl_time_point_t
233+
/// Define a pybind11 wrapper for an rclpy::ActionClient
234234
/**
235235
* \param[in] module a pybind11 module to add the definition to
236236
*/

rclpy/src/rclpy/action_server.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ class ActionServer : public Destroyable, public std::enable_shared_from_this<Act
256256
Node node_;
257257
std::shared_ptr<rcl_action_server_t> rcl_action_server_;
258258
};
259-
/// Define a pybind11 wrapper for an rcl_time_point_t
259+
/// Define a pybind11 wrapper for an rclpy::ActionServer
260260
/**
261261
* \param[in] module a pybind11 module to add the definition to
262262
*/

rclpy/src/rclpy/clock.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ class Clock : public Destroyable, public std::enable_shared_from_this<Clock>
116116
std::shared_ptr<rcl_clock_t> rcl_clock_;
117117
};
118118

119-
/// Define a pybind11 wrapper for an rclpy::Service
119+
/// Define a pybind11 wrapper for an rclpy::Clock
120120
void define_clock(py::object module);
121121
} // namespace rclpy
122122

rclpy/src/rclpy/context.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ class Context : public Destroyable, public std::enable_shared_from_this<Context>
103103
std::shared_ptr<rcl_context_t> rcl_context_;
104104
};
105105

106-
/// Define a pybind11 wrapper for an rclpy::Service
106+
/// Define a pybind11 wrapper for an rclpy::Context
107107
void define_context(py::object module);
108108
} // namespace rclpy
109109

rclpy/src/rclpy/guard_condition.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class GuardCondition : public Destroyable, public std::enable_shared_from_this<G
6868
}
6969
};
7070

71-
/// Define a pybind11 wrapper for an rclpy::Service
71+
/// Define a pybind11 wrapper for an rclpy::GuardCondition
7272
void define_guard_condition(py::object module);
7373
} // namespace rclpy
7474

rclpy/src/rclpy/publisher.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ class Publisher : public Destroyable, public std::enable_shared_from_this<Publis
131131
Node node_;
132132
std::shared_ptr<rcl_publisher_t> rcl_publisher_;
133133
};
134-
/// Define a pybind11 wrapper for an rclpy::Service
134+
/// Define a pybind11 wrapper for an rclpy::Publisher
135135
void define_publisher(py::object module);
136136
} // namespace rclpy
137137

rclpy/src/rclpy/subscription.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Subscription : public Destroyable, public std::enable_shared_from_this<Sub
109109
Node node_;
110110
std::shared_ptr<rcl_subscription_t> rcl_subscription_;
111111
};
112-
/// Define a pybind11 wrapper for an rclpy::Service
112+
/// Define a pybind11 wrapper for an rclpy::Subscription
113113
void define_subscription(py::object module);
114114
} // namespace rclpy
115115

rclpy/src/rclpy/wait_set.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ class WaitSet : public Destroyable, public std::enable_shared_from_this<WaitSet>
177177
std::shared_ptr<rcl_wait_set_t> rcl_wait_set_;
178178
};
179179

180-
/// Define a pybind11 wrapper for an rclpy::Service
180+
/// Define a pybind11 wrapper for an rclpy::WaitSet
181181
void define_waitset(py::object module);
182182
} // namespace rclpy
183183

0 commit comments

Comments
 (0)