File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
rust/catalyst-types/src/catalyst_id Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 {
You can’t perform that action at this time.
0 commit comments