diff options
| author | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-15 15:40:18 +0530 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2015-03-15 15:40:18 +0530 |
| commit | 9f1240b665f2157bc2c74701761131ce6e288002 (patch) | |
| tree | d61dc2a455e8f24cdfc375e824d5d88da8bc7da6 /src/libstd | |
| parent | 9d8bafe7427be171a54c346afdbb7d2bcebb4316 (diff) | |
| parent | fe9bb26e783fd6f09348019938b83f77f8185206 (diff) | |
| download | rust-9f1240b665f2157bc2c74701761131ce6e288002.tar.gz rust-9f1240b665f2157bc2c74701761131ce6e288002.zip | |
Rollup merge of #23384 - daboross:patch-2, r=alexcrichton
This changed `an String` to `a String`. Very minor change! The usage of `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. |
