1
Fork 0

Rollup merge of #33580 - frewsxcv:temp-dir, r=alexcrichton

Cleanup formatting and wording for `std::env::temp_dir` docs.

None
This commit is contained in:
Manish Goregaokar 2016-05-15 20:13:42 +05:30
commit 3bc7fc1b54

View file

@ -452,16 +452,16 @@ pub fn home_dir() -> Option<PathBuf> {
/// Returns the path of a temporary directory. /// Returns the path of a temporary directory.
/// ///
/// On Unix, returns the value of the 'TMPDIR' environment variable if it is /// 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 /// 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 /// is no global temporary folder (it is usually allocated per-app), it returns
/// '/data/local/tmp'. /// `/data/local/tmp`.
/// ///
/// On Windows, returns the value of, in order, the 'TMP', 'TEMP', /// On Windows, returns the value of, in order, the `TMP`, `TEMP`,
/// 'USERPROFILE' environment variable if any are set and not the empty /// `USERPROFILE` environment variable if any are set and not the empty
/// string. Otherwise, tmpdir returns the path of the Windows directory. This /// string. Otherwise, `temp_dir` returns the path of the Windows directory.
/// behavior is identical to that of [GetTempPath][msdn], which this function /// This behavior is identical to that of [`GetTempPath`][msdn], which this
/// uses internally. /// function uses internally.
/// ///
/// [msdn]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa364992(v=vs.85).aspx /// [msdn]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa364992(v=vs.85).aspx
/// ///