Skip to content

Commit b29d5e7

Browse files
raccognicholasbishop
authored andcommitted
Fix BootServices and RuntimeServices documentation links.
These links now show that they link to functions in `SystemTable`. Fix documentation for #416
1 parent f56888a commit b29d5e7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/table/boot.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ use core::{ptr, slice};
2121
///
2222
/// # Accessing `BootServices`
2323
///
24-
/// A reference to `BootServices` can only be accessed by calling [`boot_services`].
24+
/// A reference to `BootServices` can only be accessed by calling [`SystemTable::boot_services`].
2525
///
26-
/// [`boot_services`]: crate::table::SystemTable::boot_services
26+
/// [`SystemTable::boot_services`]: crate::table::SystemTable::boot_services
2727
///
2828
/// # Accessing protocols
2929
///

src/table/runtime.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ use core::{fmt, ptr};
2121
///
2222
/// # Accessing `RuntimeServices`
2323
///
24-
/// A reference to `RuntimeServices` can only be accessed by calling [`runtime_services`].
24+
/// A reference to `RuntimeServices` can only be accessed by calling [`SystemTable::runtime_services`].
2525
///
26-
/// [`runtime_services`]: crate::table::SystemTable::runtime_services
26+
/// [`SystemTable::runtime_services`]: crate::table::SystemTable::runtime_services
2727
#[repr(C)]
2828
pub struct RuntimeServices {
2929
header: Header,

0 commit comments

Comments
 (0)