Skip to content

Commit

Permalink
Minor: Fixed lint warnings seen while running "cargo doc".
Browse files Browse the repository at this point in the history
  • Loading branch information
martinfrances107 authored and 0xpr03 committed Jul 14, 2024
1 parent 6a12bba commit e52e91f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions file-id/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub enum FileId {
///
/// On Windows, the low resolution variant can be requested explicitly with the `get_low_res_file_id` function.
///
/// Details: https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-getfileinformationbyhandle.
/// Details: <https://learn.microsoft.com/en-us/windows/win32/api/fileapi/nf-fileapi-getfileinformationbyhandle>.
#[cfg_attr(feature = "serde", serde(rename = "lowres"))]
LowRes {
/// Volume serial number
Expand All @@ -70,7 +70,7 @@ pub enum FileId {
///
/// On Windows, the high resolution variant can be requested explicitly with the `get_high_res_file_id` function.
///
/// Details: https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getfileinformationbyhandleex.
/// Details: <https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getfileinformationbyhandleex>.
#[cfg_attr(feature = "serde", serde(rename = "highres"))]
HighRes {
/// Volume serial number
Expand Down

0 comments on commit e52e91f

Please sign in to comment.