Skip to content

Commit

Permalink
docs: imp rustdocs
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jun 16, 2024
1 parent 8dc2013 commit 583705f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/ics02-client/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion contracts/ics26-router/src/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/types/clients/helpers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 583705f

Please sign in to comment.