Преглед на файлове

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;