diff options
| author | Dabo Ross <daboross@daboross.net> | 2015-03-15 00:00:26 -0700 |
|---|---|---|
| committer | Dabo Ross <daboross@daboross.net> | 2015-03-15 00:00:26 -0700 |
| commit | fe9bb26e783fd6f09348019938b83f77f8185206 (patch) | |
| tree | 9824cc5ac3fa3e1c1612b729fff1614c033597f1 /src/libstd | |
| parent | 66853af9af79fdc4fb8e659c8b1f890918749d5f (diff) | |
| download | rust-fe9bb26e783fd6f09348019938b83f77f8185206.tar.gz rust-fe9bb26e783fd6f09348019938b83f77f8185206.zip | |
Fix an String -> a String in env.rs documentation
Super minor change! The `an String` was introduced in https://github.com/rust-lang/rust/commit/a828e7948069f310dc5b33be8edb65e5e8e0cf9a#diff-b596503c7c33ce457b6d047e351ac12bR423, which changed `an OsString` to `an String`.
Diffstat (limited to 'src/libstd')
| -rw-r--r-- | src/libstd/env.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs index 250c5edbcf1..27f78906ec2 100644 --- a/src/libstd/env.rs +++ b/src/libstd/env.rs @@ -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. |
