about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-02-19 14:23:29 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-02-19 14:23:29 -0500
commit2fe817df4064e45147680169661aa62b36a0d82d (patch)
tree6ef6eb9363d03625289c3c3551320cd04fd0e994 /src/libstd
parent1aec0af15f1d24e24b4993e600746f04e17839b0 (diff)
parent31c78cfe914e1e0987a8378c9e0a8a009cdeed05 (diff)
downloadrust-2fe817df4064e45147680169661aa62b36a0d82d.tar.gz
rust-2fe817df4064e45147680169661aa62b36a0d82d.zip
Rollup merge of #31765 - tshepang:shorten, r=steveklabnik
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/env.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs
index e3841975062..f7e13a35e9e 100644
--- a/src/libstd/env.rs
+++ b/src/libstd/env.rs
@@ -534,7 +534,7 @@ pub struct ArgsOs { inner: os_imp::Args }
 /// # Panics
 ///
 /// The returned iterator will panic during iteration if any argument to the
-/// process is not valid unicode. If this is not desired it is recommended to
+/// process is not valid unicode. If this is not desired,
 /// use the `args_os` function instead.
 ///
 /// # Examples