Skip to content

Commit

Permalink
fix doc_lazy_continuation
Browse files Browse the repository at this point in the history
  • Loading branch information
rnbguy committed Jun 21, 2024
1 parent 2ee738d commit 2a26c2d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions ibc-clients/cw-context/src/context/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ use crate::utils::AnyCodec;
type Checksum = Vec<u8>;

/// - [`Height`] cannot be used directly as keys in the map,
/// as it doesn't implement some cw_storage specific traits.
/// as it doesn't implement some cw_storage specific traits.
/// - Only a sorted set is needed. So the value type is set to
/// [`Empty`] following
/// ([cosmwasm-book](https://book.cosmwasm.com/cross-contract/map-storage.html#maps-as-sets)).
/// [`Empty`] following
/// ([cosmwasm-book](https://book.cosmwasm.com/cross-contract/map-storage.html#maps-as-sets)).
pub const CONSENSUS_STATE_HEIGHT_MAP: Map<(u64, u64), Empty> =
Map::new(ITERATE_CONSENSUS_STATE_PREFIX);

Expand Down
16 changes: 8 additions & 8 deletions ibc/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@
//! The layout of this crate mirrors the organization of the [IBC
//! Standard][ibc-standard]:
//!
//! + [Core](core) implements the transport, authentication, and ordering layers
//! - [Core](core) implements the transport, authentication, and ordering layers
//! of the IBC protocol.
//!
//! + [Clients](clients) consists of implementations of client verification
//! algorithms (following the base client interface that is defined in `Core`)
//! for specific consensus algorithms. A chain uses these verification
//! algorithms to verify the state of remote chains.
//! - [Clients](clients) consists of implementations of client verification
//! algorithms (following the base client interface that is defined in `Core`)
//! for specific consensus algorithms. A chain uses these verification
//! algorithms to verify the state of remote chains.
//!
//! + [Applications](apps) consists of implementations of some IBC applications.
//! This is the part of the protocol that abstracts away the core protocol and
//! focuses solely on business logic.
//! - [Applications](apps) consists of implementations of some IBC applications.
//! This is the part of the protocol that abstracts away the core protocol and
//! focuses solely on business logic.
//!
//! [ibc-standard]: https://github.com/cosmos/ibc
//! [ibc-rs]: https://github.com/cosmos/ibc-rs
Expand Down

0 comments on commit 2a26c2d

Please sign in to comment.