Skip to content

Commit 58b2c66

Browse files
committed
Fix link formatting
Signed-off-by: Michael X. Grey <[email protected]>
1 parent 8a16367 commit 58b2c66

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

rclrs/src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ unsafe impl Send for rcl_client_t {}
1919
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2020
/// [dropped after][1] the `rcl_client_t`.
2121
///
22-
/// [1] https://doc.rust-lang.org/reference/destructors.html
22+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
2323
pub struct ClientHandle {
2424
rcl_client: Mutex<rcl_client_t>,
2525
node_handle: Arc<NodeHandle>,

rclrs/src/node.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ pub struct Node {
7272
/// dependency on the lifetime of its `rcl_context_t` by ensuring that this
7373
/// dependency is [dropped after][1] the `rcl_node_t`.
7474
///
75-
/// [1] https://doc.rust-lang.org/reference/destructors.html
75+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
7676
pub(crate) struct NodeHandle {
7777
pub(crate) rcl_node: Mutex<rcl_node_t>,
7878
pub(crate) context_handle: Arc<ContextHandle>,

rclrs/src/publisher.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ unsafe impl Send for rcl_publisher_t {}
2222
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2323
/// [dropped after][1] the `rcl_publisher_t`.
2424
///
25-
/// [1] https://doc.rust-lang.org/reference/destructors.html
25+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
2626
struct PublisherHandle {
2727
rcl_publisher: Mutex<rcl_publisher_t>,
2828
node_handle: Arc<NodeHandle>,

rclrs/src/service.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ unsafe impl Send for rcl_service_t {}
1717
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
1818
/// [dropped after][1] the `rcl_service_t`.
1919
///
20-
/// [1] https://doc.rust-lang.org/reference/destructors.html
20+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
2121
pub struct ServiceHandle {
2222
rcl_service: Mutex<rcl_service_t>,
2323
node_handle: Arc<NodeHandle>,

rclrs/src/subscription.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ unsafe impl Send for rcl_subscription_t {}
2525
/// on `rcl_node_t` and `rcl_context_t` by ensuring that these dependencies are
2626
/// [dropped after][1] the `rcl_subscription_t`.
2727
///
28-
/// [1] https://doc.rust-lang.org/reference/destructors.html
28+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
2929
pub struct SubscriptionHandle {
3030
rcl_subscription: Mutex<rcl_subscription_t>,
3131
node_handle: Arc<NodeHandle>,

rclrs/src/wait.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ pub use guard_condition::*;
3232
/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
3333
/// `rcl_wait_set_t`.
3434
///
35-
/// [1] https://doc.rust-lang.org/reference/destructors.html
35+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
3636
struct WaitSetHandle {
3737
rcl_wait_set: rcl_wait_set_t,
3838
// Used to ensure the context is alive while the wait set is alive.

rclrs/src/wait/guard_condition.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ pub struct GuardCondition {
5656
/// on `rcl_context_t` by ensuring that this dependency is [dropped after][1] the
5757
/// `rcl_guard_condition_t`.
5858
///
59-
/// [1] https://doc.rust-lang.org/reference/destructors.html
59+
/// [1]: <https://doc.rust-lang.org/reference/destructors.html>
6060
pub(crate) struct GuardConditionHandle {
6161
pub(crate) rcl_guard_condition: Mutex<rcl_guard_condition_t>,
6262
/// Keep the context alive for the whole lifecycle of the guard condition

0 commit comments

Comments
 (0)