We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2642898 commit f672bbbCopy full SHA for f672bbb
rclrs/src/lib.rs
@@ -49,9 +49,8 @@ pub use time::*;
49
use time_source::*;
50
pub use wait::*;
51
52
-
53
/// # rclrs - ROS 2 Client Library for Rust
54
-///
+///
55
/// `rclrs` provides Rust bindings and idiomatic wrappers for ROS 2 (Robot Operating System).
56
/// It enables writing ROS 2 nodes, publishers, subscribers, services and clients in Rust.
57
///
@@ -67,7 +66,6 @@ pub use wait::*;
67
66
68
/// ## Example
69
/// Here's a simple publisher-subscriber node:
70
71
use std::sync::{Arc, Mutex};
72
use std_msgs::msg::String as StringMsg;
73
@@ -125,4 +123,4 @@ fn _main() -> Result<(), RclrsError> {
125
123
.spin(SpinOptions::default())
126
124
.first_error()
127
.map_err(|err| err.into())
128
-}
+}
0 commit comments