Skip to content

Commit 332fffc

Browse files
gpt_disk_types: Fix list indentation
This fixes a clippy warning in latest Rust.
1 parent d30bc5c commit 332fffc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

gpt_disk_types/src/lib.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
//! ```
1919
//!
2020
//! 1. The first block of the disk contains a protective MBR. See
21-
//! [`MasterBootRecord::protective_mbr`].
21+
//! [`MasterBootRecord::protective_mbr`].
2222
//! 2. The second block of the disk contains the primary GPT header. See
23-
//! [`GptHeader`].
23+
//! [`GptHeader`].
2424
//! 3. Additional blocks after the header contain the partition entry
25-
//! array. See [`GptPartitionEntry`] and [`GptPartitionEntryArray`].
25+
//! array. See [`GptPartitionEntry`] and [`GptPartitionEntryArray`].
2626
//! 4. At the end of the disk is a secondary GPT header and partition
27-
//! entry array.
27+
//! entry array.
2828
//!
2929
//! # Endianness
3030
//!

0 commit comments

Comments
 (0)