about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-09-16 10:45:35 -0700
committerGitHub <noreply@github.com>2016-09-16 10:45:35 -0700
commit55a61a1175b2a403d2b34ec2b2f904cc51a8952d (patch)
tree2097608190f0de00b0f3a7555b2ae410901d97a2 /src/libstd
parentc6673db58d117d5c554559ae51b4ddf0aae3de00 (diff)
parentab7425dcd48813dfd74f4655c357328467ee1278 (diff)
downloadrust-55a61a1175b2a403d2b34ec2b2f904cc51a8952d.tar.gz
rust-55a61a1175b2a403d2b34ec2b2f904cc51a8952d.zip
Auto merge of #36536 - jonathandturner:rollup, r=jonathandturner
Rollup of 8 pull requests

- Successful merges: #36383, #36424, #36480, #36484, #36505, #36509, #36519, #36521
- Failed merges:
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/env.rs4
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