Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions rust/catalyst-types/src/id_uri/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ impl IdUri {
Self { id: true, ..self }
}

/// Was `IdUri` formatted as a id when it was parsed.
/// Was `IdUri` formatted as an id when it was parsed.
#[must_use]
pub fn is_id(self) -> bool {
pub fn is_id(&self) -> bool {
self.id
}

Expand Down