Skip to content

Commit

Permalink
Merge pull request #208 from toku-sa-n/apply_link_style
Browse files Browse the repository at this point in the history
Add and fix some intra-doc links
  • Loading branch information
phil-opp authored Dec 10, 2020
2 parents e824cf6 + cbeef67 commit 38f1c7d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/structures/idt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -764,7 +764,7 @@ pub struct InterruptStackFrameValue {
/// handler returns. For most interrupts, this value points to the instruction immediately
/// following the last executed instruction. However, for some exceptions (e.g., page faults),
/// this value points to the faulting instruction, so that the instruction is restarted on
/// return. See the documentation of the `InterruptDescriptorTable` fields for more details.
/// return. See the documentation of the [`InterruptDescriptorTable`] fields for more details.
pub instruction_pointer: VirtAddr,
/// The code segment selector, padded with zeros.
pub code_segment: u64,
Expand Down
2 changes: 1 addition & 1 deletion src/structures/paging/mapper/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ pub trait Mapper<S: PageSize> {
///
/// ## Safety
///
/// This is a convencience function that invokes [`map_to`] internally, so
/// This is a convencience function that invokes [`Mapper::map_to`] internally, so
/// all safety requirements of it also apply for this function.
#[inline]
unsafe fn identity_map<A>(
Expand Down

0 comments on commit 38f1c7d

Please sign in to comment.