From cecc6702f33a1898c094d5c1e967c6b99850e626 Mon Sep 17 00:00:00 2001 From: stelzo Date: Mon, 24 Jun 2024 11:41:53 +0200 Subject: [PATCH] fix typos --- rpcl2/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcl2/src/lib.rs b/rpcl2/src/lib.rs index abd8ba6..b446dd4 100644 --- a/rpcl2/src/lib.rs +++ b/rpcl2/src/lib.rs @@ -17,11 +17,11 @@ //! - [`try_into_par_iter`](PointCloud2Msg::try_into_par_iter) requires `rayon` feature //! - [`try_from_par_iter`](PointCloud2Msg::try_from_par_iter) requires `rayon` feature //! -//! For ROS interoperability, there are integrations avialable with feature flags. If you miss a message type, please open an issue or a PR. +//! For ROS interoperability, there are integrations available with feature flags. If you miss a message type, please open an issue or a PR. //! See the [`ros`] module for more information on how to integrate more libraries. //! //! Common point types like [`PointXYZ`](points::PointXYZ) or [`PointXYZI`](points::PointXYZI) are provided. See the full list [`here`](points). You can easily add any additional custom type. -//! See [custom_enum_field_filter.rs](https://github.com/stelzo/ros_pointcloud2/blob/main/examples/custom_enum_field_filter.rs) for an example. +//! See [custom_enum_field_filter.rs](https://github.com/stelzo/ros_pointcloud2/blob/main/rpcl2/examples/custom_enum_field_filter.rs) for an example. //! //! # Minimal Example //! ```