about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-09-14 22:41:17 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2016-09-14 22:47:56 +0200
commita6da082e102966284857dc6849a0043e31b367e2 (patch)
tree42b0c386cf5d4aad7581fc18fcf3009473a80e5a /src/libstd
parentb1363a73ede57ae595f3a1be2bb75d308ba4f7f6 (diff)
downloadrust-a6da082e102966284857dc6849a0043e31b367e2.tar.gz
rust-a6da082e102966284857dc6849a0043e31b367e2.zip
doc: make that sound better
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