Skip to content

Commit e992aee

Browse files
committed
fix(rust): rename the kid_uri to just an id_uri to better reflect its type
1 parent d42b9a3 commit e992aee

File tree

6 files changed

+2
-2
lines changed

6 files changed

+2
-2
lines changed
File renamed without changes.

rust/catalyst-types/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
33
pub mod conversion;
44
pub mod hashes;
5-
pub mod kid_uri;
5+
pub mod id_uri;
66
pub mod problem_report;
77
pub mod uuid;

rust/catalyst-types/tests/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ fn test_type_usage() {
1212
type D = catalyst_types::uuid::V4;
1313
type E = catalyst_types::uuid::V7;
1414

15-
type F = catalyst_types::kid_uri::KidUri;
15+
type F = catalyst_types::id_uri::KidUri;
1616

1717
let bytes: [u8; 32] = [0; 32];
1818
let _ = catalyst_types::hashes::Blake2bHash::from(bytes);

0 commit comments

Comments
 (0)