Selaa lähdekoodia

wrong comment to module documentation

Philipp Schuster 3 vuotta sitten
vanhempi
commit
1c8b7f30a2
1 muutettua tiedostoa jossa 8 lisäystä ja 7 poistoa
  1. 8 7
      src/rsdp.rs

+ 8 - 7
src/rsdp.rs

@@ -1,10 +1,11 @@
-/// The tag that the bootloader passes will depend on the ACPI version the hardware supports.
-/// For ACPI Version 1.0, a `RsdpV1Tag` will be provided, which can be accessed from
-/// `BootInformation` using the `rsdp_v1_tag` function. For subsequent versions of ACPI, a
-/// `RsdpV2Tag` will be provided, which can be accessed with `rsdp_v2_tag`.
-///
-/// Even though the bootloader should give the address of the real RSDP/XSDT, the checksum and
-/// signature should be manually verified.
+//! The tag that the bootloader passes will depend on the ACPI version the hardware supports.
+//! For ACPI Version 1.0, a `RsdpV1Tag` will be provided, which can be accessed from
+//! `BootInformation` using the `rsdp_v1_tag` function. For subsequent versions of ACPI, a
+//! `RsdpV2Tag` will be provided, which can be accessed with `rsdp_v2_tag`.
+//!
+//! Even though the bootloader should give the address of the real RSDP/XSDT, the checksum and
+//! signature should be manually verified.
+
 use core::slice;
 use core::str;