Skip to content

Commit aa496aa

Browse files
committed
format fix
1 parent 565d61e commit aa496aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

rclrs/src/arguments.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ use std::ptr::null_mut;
99
///
1010
/// `args` is expected to be the input arguments of the program (e.g. [`std::env::args()`]),
1111
/// which are expected to contain at least one element - the executable name.
12-
///
12+
///
1313
/// 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
1515
/// [`Context::new()`][1] etc.
1616
/// Extracted non-ROS arguments are returned in the order that they appear by this function.
1717
///
@@ -27,7 +27,7 @@ use std::ptr::null_mut;
2727
/// assert_eq!(non_ros_args[1], "arg2");
2828
/// # Ok::<(), RclrsError>(())
2929
/// ```
30-
///
30+
///
3131
/// [1]: crate::Context::new
3232
pub fn extract_non_ros_args(
3333
args: impl IntoIterator<Item = String>,

0 commit comments

Comments
 (0)