Просмотр исходного кода

Merge pull request #73 from toku-sa-n/fix_example

fix(docs): remove a code example in the top page of the doc
Isaac Woods 4 лет назад
Родитель
Сommit
fb18dc9bbd
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;