Rollup merge of #65905 - cuviper:doc-unix-mode, r=Dylan-DPC

[doc] fixes for unix/vxworks `OpenOptionsExt::mode`
This commit is contained in:
Pietro Albini 2019-11-05 09:49:52 +01:00 committed by GitHub
commit 0a284153e9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -303,10 +303,10 @@ impl PermissionsExt for Permissions {
pub trait OpenOptionsExt {
/// Sets the mode bits that a new file will be created with.
///
/// If a new file is created as part of a `File::open_opts` call then this
/// If a new file is created as part of an `OpenOptions::open` call then this
/// specified `mode` will be used as the permission bits for the new file.
/// If no `mode` is set, the default of `0o666` will be used.
/// The operating system masks out bits with the systems `umask`, to produce
/// The operating system masks out bits with the system's `umask`, to produce
/// the final permissions.
///
/// # Examples

View File

@ -304,10 +304,10 @@ impl PermissionsExt for Permissions {
pub trait OpenOptionsExt {
/// Sets the mode bits that a new file will be created with.
///
/// If a new file is created as part of a `File::open_opts` call then this
/// If a new file is created as part of an `OpenOptions::open` call then this
/// specified `mode` will be used as the permission bits for the new file.
/// If no `mode` is set, the default of `0o666` will be used.
/// The operating system masks out bits with the systems `umask`, to produce
/// The operating system masks out bits with the system's `umask`, to produce
/// the final permissions.
///
/// # Examples