Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
DaniPopes committed Feb 10, 2024
1 parent 96c5158 commit d06576b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions crates/alloy/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -116,14 +116,14 @@ pub mod signers {
/// Low-level Ethereum JSON-RPC transport abstraction and implementations.
///
/// You will likely not need to use this module;
/// see the [`provider`] module for high-level usage of transports.
/// see the [`providers`] module for high-level usage of transports.
///
/// See [`alloy_transport`] for more details.
#[doc = "\n"] // Empty doc line `///` gets deleted by rustfmt.
#[cfg_attr(feature = "provider", doc = "[`provider`]: crate::provider")]
#[cfg_attr(feature = "providers", doc = "[`providers`]: crate::providers")]
#[cfg_attr(
not(feature = "providers"),
doc = "[`provider`]: https://github.com/alloy-rs/alloy/tree/main/crates/provider"
doc = "[`providers`]: https://github.com/alloy-rs/alloy/tree/main/crates/providers"
)]
#[cfg(feature = "transports")]
pub mod transports {
Expand All @@ -144,14 +144,14 @@ pub mod transports {
/// Ethereum JSON-RPC publish-subscribe tower service and type definitions.
///
/// You will likely not need to use this module;
/// see the [`provider`] module for high-level usage of pubsub.
/// see the [`providers`] module for high-level usage of pubsub.
///
/// See [`alloy_pubsub`] for more details.
#[doc = "\n"] // Empty doc line `///` gets deleted by rustfmt.
#[cfg_attr(feature = "provider", doc = "[`provider`]: crate::provider")]
#[cfg_attr(feature = "providers", doc = "[`providers`]: crate::providers")]
#[cfg_attr(
not(feature = "providers"),
doc = "[`provider`]: https://github.com/alloy-rs/alloy/tree/main/crates/provider"
doc = "[`providers`]: https://github.com/alloy-rs/alloy/tree/main/crates/providers"
)]
#[cfg(feature = "pubsub")]
pub mod pubsub {
Expand Down

0 comments on commit d06576b

Please sign in to comment.