Skip to content

Commit f3b69e8

Browse files
committed
doc: fix URL errors
1 parent 51a7a04 commit f3b69e8

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

uefi/src/table/cfg.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
//! This module contains the actual entries of the configuration table,
1010
//! as well as GUIDs for many known vendor tables.
1111
//!
12-
//! https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table-properties-table
12+
//! See <https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table-properties-table>.
1313
1414
use crate::{guid, Guid};
1515
use bitflags::bitflags;
@@ -19,7 +19,7 @@ use core::ffi::c_void;
1919
///
2020
/// The UEFI standard guarantees each entry is unique.
2121
///
22-
/// https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table
22+
/// See <https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-configuration-table>.
2323
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
2424
#[repr(C)]
2525
pub struct ConfigTableEntry {
@@ -60,13 +60,11 @@ impl ConfigTableEntry {
6060
pub const MEMORY_STATUS_CODE_RECORD_GUID: Guid = guid!("060cc026-4c0d-4dda-8f41-595fef00a502");
6161

6262
/// Provides additional information about regions within the run-time memory blocks.
63-
///
64-
/// https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-memory-attributes-table
63+
/// See <https://uefi.org/specs/UEFI/2.10/04_EFI_System_Table.html#efi-memory-attributes-table>.
6564
pub const MEMORY_ATTRIBUTES_GUID: Guid = guid!("dcfa911d-26eb-469f-a220-38b7dc461220");
6665

6766
/// Constants used for UEFI signature database variable access.
68-
///
69-
/// https://uefi.org/specs/UEFI/2.11/32_Secure_Boot_and_Driver_Signing.html#uefi-image-variable-guid-variable-name
67+
/// See <https://uefi.org/specs/UEFI/2.11/32_Secure_Boot_and_Driver_Signing.html#uefi-image-variable-guid-variable-name>.
7068
pub const IMAGE_SECURITY_DATABASE_GUID: Guid = guid!("d719b2cb-3d3a-4596-a3bc-dad00e67656f");
7169

7270
/// Table which provides Driver eXecution Environment services.

0 commit comments

Comments
 (0)