File tree 1 file changed +6
-6
lines changed
1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -695,21 +695,21 @@ pub struct ArgsOs {
695
695
inner : sys:: args:: Args ,
696
696
}
697
697
698
- /// Returns the arguments which this program was started with (normally passed
698
+ /// Returns the arguments that this program was started with (normally passed
699
699
/// via the command line).
700
700
///
701
701
/// The first element is traditionally the path of the executable, but it can be
702
702
/// set to arbitrary text, and may not even exist. This means this property should
703
703
/// not be relied upon for security purposes.
704
704
///
705
- /// On Unix systems shell usually expands unquoted arguments with glob patterns
705
+ /// On Unix systems the shell usually expands unquoted arguments with glob patterns
706
706
/// (such as `*` and `?`). On Windows this is not done, and such arguments are
707
707
/// passed as-is.
708
708
///
709
- /// On glibc Linux systems, arguments are retrieved by placing a function in " .init_array" .
710
- /// Glibc passes argc, argv, and envp to functions in " .init_array" , as a non-standard extension.
711
- /// This allows `std::env::args` to work even in a `cdylib` or `staticlib`, as it does on macOS
712
- /// and Windows.
709
+ /// On glibc Linux systems, arguments are retrieved by placing a function in ` .init_array` .
710
+ /// Glibc passes ` argc`, ` argv` , and ` envp` to functions in ` .init_array` , as a non-standard
711
+ /// extension. This allows `std::env::args` to work even in a `cdylib` or `staticlib`, as it
712
+ /// does on macOS and Windows.
713
713
///
714
714
/// # Panics
715
715
///
You can’t perform that action at this time.
0 commit comments