Skip to content

Commit

Permalink
Fix doc re-export inlines in crate root.
Browse files Browse the repository at this point in the history
  • Loading branch information
SergioBenitez committed Mar 23, 2023
1 parent 28569e8 commit 14b8a08
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions core/lib/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,11 @@ mod phase;
#[doc(inline)] pub use phase::{Phase, Build, Ignite, Orbit};
#[doc(inline)] pub use error::Error;
#[doc(inline)] pub use sentinel::Sentinel;
#[doc(inline)] pub use crate::request::Request;
#[doc(inline)] pub use crate::rocket::Rocket;
#[doc(inline)] pub use crate::shutdown::Shutdown;
#[doc(inline)] pub use crate::state::State;
#[doc(inline)] pub use rocket_codegen::*;
pub use crate::rocket::Rocket;
pub use crate::request::Request;
pub use crate::shutdown::Shutdown;
pub use crate::state::State;

/// Creates a [`Rocket`] instance with the default config provider: aliases
/// [`Rocket::build()`].
Expand Down

0 comments on commit 14b8a08

Please sign in to comment.