Skip to content

Commit 38f1c7d

Browse files
authored
Merge pull request #208 from toku-sa-n/apply_link_style
Add and fix some intra-doc links
2 parents e824cf6 + cbeef67 commit 38f1c7d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/structures/idt.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -764,7 +764,7 @@ pub struct InterruptStackFrameValue {
764764
/// handler returns. For most interrupts, this value points to the instruction immediately
765765
/// following the last executed instruction. However, for some exceptions (e.g., page faults),
766766
/// this value points to the faulting instruction, so that the instruction is restarted on
767-
/// return. See the documentation of the `InterruptDescriptorTable` fields for more details.
767+
/// return. See the documentation of the [`InterruptDescriptorTable`] fields for more details.
768768
pub instruction_pointer: VirtAddr,
769769
/// The code segment selector, padded with zeros.
770770
pub code_segment: u64,

src/structures/paging/mapper/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ pub trait Mapper<S: PageSize> {
325325
///
326326
/// ## Safety
327327
///
328-
/// This is a convencience function that invokes [`map_to`] internally, so
328+
/// This is a convencience function that invokes [`Mapper::map_to`] internally, so
329329
/// all safety requirements of it also apply for this function.
330330
#[inline]
331331
unsafe fn identity_map<A>(

0 commit comments

Comments
 (0)