From 2a26c2d124a1520d06c2dd74637082f3f11d60bd Mon Sep 17 00:00:00 2001 From: Ranadeep Biswas Date: Fri, 21 Jun 2024 11:40:03 +0200 Subject: [PATCH] fix doc_lazy_continuation --- ibc-clients/cw-context/src/context/mod.rs | 6 +++--- ibc/src/lib.rs | 16 ++++++++-------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/ibc-clients/cw-context/src/context/mod.rs b/ibc-clients/cw-context/src/context/mod.rs index bc719d681..70e534fe6 100644 --- a/ibc-clients/cw-context/src/context/mod.rs +++ b/ibc-clients/cw-context/src/context/mod.rs @@ -24,10 +24,10 @@ use crate::utils::AnyCodec; type Checksum = Vec; /// - [`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); diff --git a/ibc/src/lib.rs b/ibc/src/lib.rs index a6e22ba20..3c2fcacd9 100644 --- a/ibc/src/lib.rs +++ b/ibc/src/lib.rs @@ -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