Fix an String -> a String in env.rs documentation

Super minor change!

The `an String` was introduced in a828e79480 (diff-b596503c7c33ce457b6d047e351ac12bR423), which changed `an OsString` to `an String`.
This commit is contained in:
Dabo Ross 2015-03-15 00:00:26 -07:00
parent 66853af9af
commit fe9bb26e78

View File

@ -452,7 +452,7 @@ pub fn get_exit_status() -> i32 {
EXIT_STATUS.load(Ordering::SeqCst) as i32
}
/// An iterator over the arguments of a process, yielding an `String` value
/// An iterator over the arguments of a process, yielding a `String` value
/// for each argument.
///
/// This structure is created through the `std::env::args` method.