Skip to content

Commit 1c8b7f3

Browse files
committed
wrong comment to module documentation
1 parent 5374975 commit 1c8b7f3

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/rsdp.rs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
/// The tag that the bootloader passes will depend on the ACPI version the hardware supports.
2-
/// For ACPI Version 1.0, a `RsdpV1Tag` will be provided, which can be accessed from
3-
/// `BootInformation` using the `rsdp_v1_tag` function. For subsequent versions of ACPI, a
4-
/// `RsdpV2Tag` will be provided, which can be accessed with `rsdp_v2_tag`.
5-
///
6-
/// Even though the bootloader should give the address of the real RSDP/XSDT, the checksum and
7-
/// signature should be manually verified.
1+
//! The tag that the bootloader passes will depend on the ACPI version the hardware supports.
2+
//! For ACPI Version 1.0, a `RsdpV1Tag` will be provided, which can be accessed from
3+
//! `BootInformation` using the `rsdp_v1_tag` function. For subsequent versions of ACPI, a
4+
//! `RsdpV2Tag` will be provided, which can be accessed with `rsdp_v2_tag`.
5+
//!
6+
//! Even though the bootloader should give the address of the real RSDP/XSDT, the checksum and
7+
//! signature should be manually verified.
8+
89
use core::slice;
910
use core::str;
1011

0 commit comments

Comments
 (0)