Skip to content

Commit

Permalink
replace glob import terminology with "re-exports"
Browse files Browse the repository at this point in the history
  • Loading branch information
aspect committed Sep 27, 2024
1 parent 2e50f75 commit c526a87
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion rpc/core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub mod notify;
pub mod wasm;

pub mod prelude {
//! Glob imports of the most commonly used types and traits in this crate.
//! Re-exports of the most commonly used types and traits in this crate.
pub use super::api::notifications::*;
pub use super::model::script_class::*;
pub use super::model::*;
Expand Down
3 changes: 1 addition & 2 deletions wallet/core/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
//!
//! A module which is typically glob imported.
//! Contains most commonly used imports.
//! Re-exports of the most commonly used types and traits in this crate.
//!

pub use crate::account::descriptor::AccountDescriptor;
Expand Down
2 changes: 1 addition & 1 deletion wallet/keys/src/prelude.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//!
//! Glob imports for the `kaspa_wallet_keys` crate.
//! Re-exports of the most commonly used types and traits in this crate.
//!

pub use crate::derivation_path::*;
Expand Down

0 comments on commit c526a87

Please sign in to comment.