From 74e667cb68be110421d385e73404c4f6e0419ea2 Mon Sep 17 00:00:00 2001 From: Laurian Iacob <91423981+iLaurian@users.noreply.github.com> Date: Sat, 15 Nov 2025 14:00:44 +0200 Subject: [PATCH] Clean up init program example in documentation Removed unused imports from the init program example. --- docs/linux_kernel_development/index.mdx | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/linux_kernel_development/index.mdx b/docs/linux_kernel_development/index.mdx index 247ecb7..d1c013e 100644 --- a/docs/linux_kernel_development/index.mdx +++ b/docs/linux_kernel_development/index.mdx @@ -389,8 +389,6 @@ The simplest init program is one that write *Hello, world!*. It is so simple tha already written it for us. ```rust -use std::{thread, time::Duration}; - fn main() { println!("Hello, world!"); }