Skip to content

Commit 5135cc8

Browse files
committed
Fix tidy errors
1 parent c350bc1 commit 5135cc8

File tree

1 file changed

+6
-3
lines changed
  • src/libstd/sys/windows/ext

1 file changed

+6
-3
lines changed

src/libstd/sys/windows/ext/fs.rs

+6-3
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,8 @@ pub trait OpenOptionsExt {
241241
///
242242
/// [`CreateFile`]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa363858.aspx
243243
/// [`CreateFile2`]: https://msdn.microsoft.com/en-us/library/windows/desktop/hh449422.aspx
244-
/// [Impersonation Levels]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa379572.aspx
244+
/// [Impersonation Levels]:
245+
/// https://msdn.microsoft.com/en-us/library/windows/desktop/aa379572.aspx
245246
#[stable(feature = "open_options_ext", since = "1.10.0")]
246247
fn security_qos_flags(&mut self, flags: u32) -> &mut OpenOptions;
247248
}
@@ -276,7 +277,8 @@ impl OpenOptionsExt for OpenOptions {
276277
/// of the [`BY_HANDLE_FILE_INFORMATION`] structure.
277278
///
278279
/// [`fs::Metadata`]: ../../../fs/struct.Metadata.html
279-
/// [`BY_HANDLE_FILE_INFORMATION`]: https://msdn.microsoft.com/en-us/library/windows/desktop/aa363788.aspx
280+
/// [`BY_HANDLE_FILE_INFORMATION`]:
281+
/// https://msdn.microsoft.com/en-us/library/windows/desktop/aa363788.aspx
280282
#[stable(feature = "metadata_ext", since = "1.1.0")]
281283
pub trait MetadataExt {
282284
/// Returns the value of the `dwFileAttributes` field of this metadata.
@@ -299,7 +301,8 @@ pub trait MetadataExt {
299301
/// # }
300302
/// ```
301303
///
302-
/// [File Attribute Constants]: https://msdn.microsoft.com/en-us/library/windows/desktop/gg258117.aspx
304+
/// [File Attribute Constants]:
305+
/// https://msdn.microsoft.com/en-us/library/windows/desktop/gg258117.aspx
303306
#[stable(feature = "metadata_ext", since = "1.1.0")]
304307
fn file_attributes(&self) -> u32;
305308

0 commit comments

Comments
 (0)