about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2016-05-15 20:13:42 +0530
committerManish Goregaokar <manishsmail@gmail.com>2016-05-15 20:13:42 +0530
commit3bc7fc1b548869199e46f7cf44a9ebfa9e8556b6 (patch)
tree7fb302d7c33ff08ec89a47d9cc3a92225e23bccb /src/libstd
parent0238e29652d46e21b3aa81194de10dbad8f22594 (diff)
parent6458b0454f66f9cf16a4b50b8e0874b950326ef3 (diff)
downloadrust-3bc7fc1b548869199e46f7cf44a9ebfa9e8556b6.tar.gz
rust-3bc7fc1b548869199e46f7cf44a9ebfa9e8556b6.zip
Rollup merge of #33580 - frewsxcv:temp-dir, r=alexcrichton
Cleanup formatting and wording for `std::env::temp_dir` docs.

None
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/env.rs20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/libstd/env.rs b/src/libstd/env.rs
index 9dc6a26cdee..6956dc0d901 100644
--- a/src/libstd/env.rs
+++ b/src/libstd/env.rs
@@ -452,16 +452,16 @@ pub fn home_dir() -> Option<PathBuf> {
 
 /// Returns the path of a temporary directory.
 ///
-/// On Unix, returns the value of the 'TMPDIR' environment variable if it is
-/// set, otherwise for non-Android it returns '/tmp'. If Android, since there
-/// is no global temporary folder (it is usually allocated per-app), we return
-/// '/data/local/tmp'.
-///
-/// On Windows, returns the value of, in order, the 'TMP', 'TEMP',
-/// 'USERPROFILE' environment variable  if any are set and not the empty
-/// string. Otherwise, tmpdir returns the path of the Windows directory. This
-/// behavior is identical to that of [GetTempPath][msdn], which this function
-/// uses internally.
+/// On Unix, returns the value of the `TMPDIR` environment variable if it is
+/// set, otherwise for non-Android it returns `/tmp`. If Android, since there
+/// is no global temporary folder (it is usually allocated per-app), it returns
+/// `/data/local/tmp`.
+///
+/// On Windows, returns the value of, in order, the `TMP`, `TEMP`,
+/// `USERPROFILE` environment variable if any are set and not the empty
+/// string. Otherwise, `temp_dir` returns the path of the Windows directory.
+/// This behavior is identical to that of [`GetTempPath`][msdn], which this
+/// function uses internally.
 ///
 /// [msdn]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa364992(v=vs.85).aspx
 ///