diff --git a/src/context/mod.rs b/src/context/mod.rs index e2f09ac05d7c109c30cfbefcee2a9ee3cf37a6a4..c1e0d19d6e44c02b38d613d998bc7b6d3b853b48 100644 --- a/src/context/mod.rs +++ b/src/context/mod.rs @@ -1,6 +1,6 @@ -//! Context management -//! https://en.wikipedia.org/wiki/Context_switch -//! https://wiki.osdev.org/Context_Switching +//! # Context management +//! +//! For resources on contexts, please consult [wikipedia](https://en.wikipedia.org/wiki/Context_switch) and [osdev](https://wiki.osdev.org/Context_Switching) use alloc::boxed::Box; use core::alloc::{Alloc, GlobalAlloc, Layout}; use core::sync::atomic::Ordering;