From 583705f687a8444ecf79b2e8729d67ab631f3931 Mon Sep 17 00:00:00 2001 From: srdtrk Date: Sun, 16 Jun 2024 14:26:27 +0400 Subject: [PATCH] docs: imp rustdocs --- contracts/ics02-client/src/helpers.rs | 2 +- contracts/ics26-router/src/helpers.rs | 2 +- packages/shared/src/types/clients/helpers.rs | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/contracts/ics02-client/src/helpers.rs b/contracts/ics02-client/src/helpers.rs index b2096e4..1c56a77 100644 --- a/contracts/ics02-client/src/helpers.rs +++ b/contracts/ics02-client/src/helpers.rs @@ -25,7 +25,7 @@ pub struct Ics02ClientCode(pub u64); /// `Ics02ClientContractQuerier` is a wrapper around [`QuerierWrapper`] that provides /// helpers for querying this contract. /// -/// This can be constructed by [`Ics02ClientContract::query`] or [`Ics02ClientContractQuerier::new`]. +/// This can be constructed by [`Ics02ClientContract::query`] or [`Self::new`]. pub struct Ics02ClientContractQuerier<'a> { querier: &'a QuerierWrapper<'a>, addr: String, diff --git a/contracts/ics26-router/src/helpers.rs b/contracts/ics26-router/src/helpers.rs index ae1c15c..43a7fad 100644 --- a/contracts/ics26-router/src/helpers.rs +++ b/contracts/ics26-router/src/helpers.rs @@ -24,7 +24,7 @@ pub struct IbcLiteRouterCode(pub u64); /// `IbcLiteRouterContractQuerier` is a wrapper around [`QuerierWrapper`] that provides /// helpers for querying this contract. /// -/// This can be constructed by [`IbcLiteRouterContract::query`] or [`IbcLiteRouterContractQuerier::new`]. +/// This can be constructed by [`IbcLiteRouterContract::query`] or [`Self::new`]. pub struct IbcLiteRouterContractQuerier<'a> { querier: &'a QuerierWrapper<'a>, addr: String, diff --git a/packages/shared/src/types/clients/helpers.rs b/packages/shared/src/types/clients/helpers.rs index 373edcd..cb56a16 100644 --- a/packages/shared/src/types/clients/helpers.rs +++ b/packages/shared/src/types/clients/helpers.rs @@ -29,7 +29,7 @@ pub struct LightClientCode(pub u64); /// `LightClientContractQuerier` is a wrapper around [`QuerierWrapper`] that provides /// helpers for querying this contract. /// -/// This can be constructed by [`LightClientContract::query`] or [`LightClientContractQuerier::new`]. +/// This can be constructed by [`LightClientContract::query`] or [`Self::new`]. pub struct LightClientContractQuerier<'a> { querier: &'a QuerierWrapper<'a>, addr: String,