summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2016-02-25 22:52:02 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2016-02-25 22:52:02 +0200
commit52ed15fb7c7f3771a8a277c616a75f6ba26f050e (patch)
treed04064cf995a8447d50a8266fe507572f79696d3 /src/libstd
parentf6f050d09003a4c7895f44fed3a7c6cdce8f2949 (diff)
downloadrust-52ed15fb7c7f3771a8a277c616a75f6ba26f050e.tar.gz
rust-52ed15fb7c7f3771a8a277c616a75f6ba26f050e.zip
doc: add missing comma
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 aa6a6d548b3..40f5e4c8345 100644
--- a/src/libstd/env.rs
+++ b/src/libstd/env.rs
@@ -492,7 +492,7 @@ pub fn temp_dir() -> PathBuf {
 ///
 /// Acquiring the path to the current executable is a platform-specific operation
 /// that can fail for a good number of reasons. Some errors can include, but not
-/// be limited to filesystem operations failing or general syscall failures.
+/// be limited to, filesystem operations failing or general syscall failures.
 ///
 /// # Examples
 ///