File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -9,9 +9,9 @@ use std::ptr::null_mut;
9
9
///
10
10
/// `args` is expected to be the input arguments of the program (e.g. [`std::env::args()`]),
11
11
/// which are expected to contain at least one element - the executable name.
12
- ///
12
+ ///
13
13
/// ROS arguments are arguments between `--ros-args` and `--`, with the final `--` being optional.
14
- /// Everything else is considered as non-ROS arguments and will be left unparsed by
14
+ /// Everything else is considered as non-ROS arguments and will be left unparsed by
15
15
/// [`Context::new()`][1] etc.
16
16
/// Extracted non-ROS arguments are returned in the order that they appear by this function.
17
17
///
@@ -27,7 +27,7 @@ use std::ptr::null_mut;
27
27
/// assert_eq!(non_ros_args[1], "arg2");
28
28
/// # Ok::<(), RclrsError>(())
29
29
/// ```
30
- ///
30
+ ///
31
31
/// [1]: crate::Context::new
32
32
pub fn extract_non_ros_args (
33
33
args : impl IntoIterator < Item = String > ,
You can’t perform that action at this time.
0 commit comments