aboutsummaryrefslogtreecommitdiff
path: root/src/panic_wait.rs
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-08-19 21:22:18 -0700
committerChristian Cunningham <cc@localhost>2022-08-19 21:22:18 -0700
commit26ab71043d97c1b06bdd252378b64171cb95b1a9 (patch)
tree9bea25574fc20e77a4faae6811add97e0a248175 /src/panic_wait.rs
parent0d061dac9e31831e4fe426a0df777463043868d7 (diff)
Updated docs
Diffstat (limited to 'src/panic_wait.rs')
-rw-r--r--src/panic_wait.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/panic_wait.rs b/src/panic_wait.rs
index 33097d8..1136e54 100644
--- a/src/panic_wait.rs
+++ b/src/panic_wait.rs
@@ -1,8 +1,10 @@
+//! # Panic module
+//!
//! A panic handler that infinitely waits
use core::panic::PanicInfo;
-/// Panic handler
+/// # Panic handler
#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
unimplemented!()