Get doctests working on lib.rs (will fix ignored later)

This commit is contained in:
Gwilym Kuiper 2022-07-12 14:39:50 +01:00
parent 643891a9de
commit 5e317ef192

View file

@ -50,7 +50,7 @@
/// ///
/// This will generate something along the lines of the following: /// This will generate something along the lines of the following:
/// ///
/// ``` /// ```rust,ignore
/// // module name comes from the name of the toml file, so `sprites` in this case because it is /// // module name comes from the name of the toml file, so `sprites` in this case because it is
/// // called `sprites.toml` /// // called `sprites.toml`
/// mod sprites { /// mod sprites {
@ -75,7 +75,7 @@
/// ``` /// ```
/// ///
/// In `src/main.rs` /// In `src/main.rs`
/// ``` /// ```rust,ignore
/// mod gfx { /// mod gfx {
/// use agb::display::object::ObjectControl; /// use agb::display::object::ObjectControl;
/// ///
@ -105,7 +105,7 @@
/// ``` /// ```
/// ///
/// In `src/main.rs`: /// In `src/main.rs`:
/// ``` /// ```rust,ignore
/// mod gfx { /// mod gfx {
/// use agb::display::background::BackgroundDistributor; /// use agb::display::background::BackgroundDistributor;
/// ///
@ -139,7 +139,7 @@ macro_rules! include_font {
/// Doing this will ensure that `agb` can correctly set up the environment to call your rust function on start up. /// Doing this will ensure that `agb` can correctly set up the environment to call your rust function on start up.
/// ///
/// # Examples /// # Examples
/// ``` /// ```no_run,rust
/// #![no_std] /// #![no_std]
/// #![no_main] /// #![no_main]
/// ///
@ -206,7 +206,7 @@ static mut GBASINGLE: single::Singleton<Gba> = single::Singleton::new(unsafe { G
/// ///
/// # Examples /// # Examples
/// ///
/// ``` /// ```no_run,rust
/// #![no_std] /// #![no_std]
/// #![no_main] /// #![no_main]
/// ///