소스 검색

wrong comment to module documentation

Philipp Schuster 3 년 전
부모
커밋
1c8b7f30a2
1개의 변경된 파일8개의 추가작업 그리고 7개의 파일을 삭제
  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;