aboutsummaryrefslogtreecommitdiff
path: root/src/panic_wait.rs
diff options
context:
space:
mode:
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!()