Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 1d1e430

Browse files
author
Oliver E. Anderson
authored
Fixes GovernorAddressUnlockCondition links (#1575)
1 parent 8667530 commit 1d1e430

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

types/src/block/output/unlock_condition/governor_address.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ use crate::block::address::Address;
1212
pub struct GovernorAddressUnlockCondition(Address);
1313

1414
impl GovernorAddressUnlockCondition {
15-
/// The [`UnlockCondition`](crate::block::output::UnlockCondition) kind of an [ GovernorAddressUnlockCondition`].
15+
/// The [`UnlockCondition`](crate::block::output::UnlockCondition) kind of an [`GovernorAddressUnlockCondition`].
1616
pub const KIND: u8 = 5;
1717

18-
/// Creates a new [ GovernorAddressUnlockCondition`].
18+
/// Creates a new [`GovernorAddressUnlockCondition`].
1919
#[inline(always)]
2020
pub fn new(address: Address) -> Self {
2121
Self(address)
2222
}
2323

24-
/// Returns the address of a [ GovernorAddressUnlockCondition`].
24+
/// Returns the address of a [`GovernorAddressUnlockCondition`].
2525
#[inline(always)]
2626
pub fn address(&self) -> &Address {
2727
&self.0

0 commit comments

Comments
 (0)