signature fix

This commit is contained in:
Lokathor 2022-10-05 00:09:14 -06:00
parent 1834876cb7
commit 8bd4dfa939

View file

@ -42,8 +42,8 @@
//! * **Make Your Executables:** At this point you can make a `bin` or an //! * **Make Your Executables:** At this point you can make a `bin` or an
//! `example` file. Every executable will need to be `#![no_std]` and //! `example` file. Every executable will need to be `#![no_std]` and
//! `#![no_main]`. They will also need a `#[panic_handler]` defined, as well //! `#![no_main]`. They will also need a `#[panic_handler]` defined, as well
//! as a `#[no_mangle] extern "C" main() -> !` function, which is what the //! as a `#[no_mangle] extern "C" fn main() -> ! {}` function, which is what
//! assembly runtime will call to start your Rust program after it fully //! the assembly runtime will call to start your Rust program after it fully
//! initializes the system. //! initializes the system.
//! //!
//! ```rust //! ```rust