From 2de83eb93214e59cef05697785a08f79c4c0b3aa Mon Sep 17 00:00:00 2001 From: 17liamnaddell <liamnprg@gmail.com> Date: Sat, 21 Jul 2018 21:46:11 -0400 Subject: [PATCH] fix small documentation bug --- src/context/mod.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/context/mod.rs b/src/context/mod.rs index e2f09ac..c1e0d19 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; -- GitLab