Skip to content

Commit a9c0a0d

Browse files
committed
wip
1 parent e9d5642 commit a9c0a0d

File tree

1 file changed

+5
-5
lines changed
  • rust/catalyst-types/src/catalyst_id

1 file changed

+5
-5
lines changed

rust/catalyst-types/src/catalyst_id/mod.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -537,18 +537,18 @@ impl CatalystId {
537537
.as_id()
538538
}
539539

540-
/// Comparisons of `CatalystId` based on original `PartialEq` plus includiing the
541-
/// `username`, `nonce` fields.
540+
/// Comparisons of `CatalystId` based on original `PartialEq` plus including
541+
/// `username` and `nonce` fields.
542542
pub fn eq_with_userinfo(
543543
&self,
544544
other: &Self,
545545
) -> bool {
546546
self.eq(other) && self.username().eq(&other.username()) && self.nonce().eq(&other.nonce())
547547
}
548548

549-
/// Comparisons of `CatalystId` based on `CatalystId::eq_with_rolekey` plus
550-
/// includiing the `username`, `nonce` fields.
551-
pub fn eq_with_rolekey(
549+
/// Comparisons of `CatalystId` based on `CatalystId::eq_with_userinfo` plus including
550+
/// `role` and `rotation` fields.
551+
pub fn eq_with_role(
552552
&self,
553553
other: &Self,
554554
) -> bool {

0 commit comments

Comments
 (0)