diff options
| author | Jonathan Turner <jonathandturner@users.noreply.github.com> | 2016-09-16 09:29:48 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-09-16 09:29:48 -0700 |
| commit | 77c7ff5b464d8585a0fc2a9b305a240403e7675b (patch) | |
| tree | a5a513d469d4e6a233654f33cc2e201c847c38c7 | |
| parent | d48f17b21e3e30a33ea9dffde4545f1bac482343 (diff) | |
| parent | a6da082e102966284857dc6849a0043e31b367e2 (diff) | |
| download | rust-77c7ff5b464d8585a0fc2a9b305a240403e7675b.tar.gz rust-77c7ff5b464d8585a0fc2a9b305a240403e7675b.zip | |
Rollup merge of #36480 - tshepang:stronger-pause, r=steveklabnik
doc: make that sound better
| -rw-r--r-- | src/libstd/env.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs index 63bf051c9bc..76eb92bd559 100644 --- a/src/libstd/env.rs +++ b/src/libstd/env.rs @@ -83,7 +83,7 @@ pub struct VarsOs { inner: os_imp::Env } /// environment variables of the current process. /// /// The returned iterator contains a snapshot of the process's environment -/// variables at the time of this invocation, modifications to environment +/// variables at the time of this invocation. Modifications to environment /// variables afterwards will not be reflected in the returned iterator. /// /// # Panics @@ -112,7 +112,7 @@ pub fn vars() -> Vars { /// environment variables of the current process. /// /// The returned iterator contains a snapshot of the process's environment -/// variables at the time of this invocation, modifications to environment +/// variables at the time of this invocation. Modifications to environment /// variables afterwards will not be reflected in the returned iterator. /// /// # Examples |
