Skip to content

Commit

Permalink
feat(type-gen): remove macros reexports in prelude
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewsonin committed Apr 24, 2024
1 parent 5b948fb commit b922f30
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 deletions.
1 change: 0 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ pub mod utils;
pub mod prelude {
pub use crate::{
collections::blazemap::BlazeMap,
define_key_wrapper, define_key_wrapper_bounded, define_plain_id,
traits::{AllInstancesIter, BlazeMapId, BlazeMapIdStatic, BlazeMapIdWrapper},
};
}
Expand Down
2 changes: 1 addition & 1 deletion src/type_gen/key_wrapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
/// # Example
///
/// ```rust
/// use blazemap::prelude::{BlazeMap, define_key_wrapper};
/// use blazemap::{prelude::BlazeMap, define_key_wrapper};
///
/// define_key_wrapper! {
/// pub struct Key(&'static str);
Expand Down
2 changes: 1 addition & 1 deletion src/type_gen/key_wrapper_bounded.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
/// # Example
///
/// ```rust
/// use blazemap::prelude::{BlazeMap, define_key_wrapper_bounded};
/// use blazemap::{prelude::BlazeMap, define_key_wrapper_bounded};
///
/// define_key_wrapper_bounded! {
/// pub struct Key(&'static str);
Expand Down
2 changes: 1 addition & 1 deletion src/type_gen/plain_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
/// # Example
///
/// ```rust
/// use blazemap::prelude::{BlazeMap, define_plain_id};
/// use blazemap::{prelude::BlazeMap, define_plain_id};
///
/// define_plain_id! {
/// pub struct Id;
Expand Down

0 comments on commit b922f30

Please sign in to comment.