فهرست منبع

Merge branch 'master' into fmt

Isaac Woods 4 سال پیش
والد
کامیت
feafea9fd6
1فایلهای تغییر یافته به همراه0 افزوده شده و 13 حذف شده
  1. 0 13
      src/lib.rs

+ 0 - 13
src/lib.rs

@@ -7,19 +7,6 @@
 //! The GNU Multiboot specification aims provide to a standardised
 //! method of sharing commonly used information about the host machine at
 //! boot time.
-//!
-//! # Examples
-//!
-//! ```ignore
-//! use multiboot2::load;
-//!
-//! // The Multiboot 2 specification dictates that the machine state after the
-//! // bootloader finishes its job will be that the boot information struct pointer
-//! // is stored in the `EBX` register.
-//! let multiboot_info_ptr: u32;
-//! unsafe { asm!("mov $2, %ebx" : "=r"(multiboot_info_ptr)) };
-//! let boot_info = unsafe { load(multiboot_info_ptr) };
-//! ```
 
 use core::fmt;