diff options
-rw-r--r-- | adenosine-cli/src/identifiers.rs | 4 | ||||
-rw-r--r-- | notes/ipld_car_explore.md | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/adenosine-cli/src/identifiers.rs b/adenosine-cli/src/identifiers.rs index a6a2696..721644f 100644 --- a/adenosine-cli/src/identifiers.rs +++ b/adenosine-cli/src/identifiers.rs @@ -63,7 +63,7 @@ fn test_didorhost() { assert!(DidOrHost::from_str(" ").is_err()); assert!(DidOrHost::from_str("1234").is_err()); - assert!(DidOrHost::from_str("mutli.part.domain").is_ok()); + assert!(DidOrHost::from_str("multi.part.domain").is_ok()); assert!(DidOrHost::from_str("did:is:weird").is_ok()); assert!(DidOrHost::from_str("did:plc:bv6ggog3tya2z3vxsub7hnal").is_ok()); } @@ -275,7 +275,7 @@ lazy_static! { }; } -/// A string identifier representing a UNIX time in miliseconds, plus a small counter +/// A string identifier representing a UNIX time in milliseconds, plus a small counter /// /// Pretty permissive about what can be parsed/accepted, because there were some old TIDs floating /// around with weird format. diff --git a/notes/ipld_car_explore.md b/notes/ipld_car_explore.md index bb11c31..ed61d83 100644 --- a/notes/ipld_car_explore.md +++ b/notes/ipld_car_explore.md @@ -1,5 +1,5 @@ -Thie CAR format used for repository exports is compatible with IPLD. This means +The CAR format used for repository exports is compatible with IPLD. This means the generic `ipfs` command-line tool (aka, [kubo](https://docs.ipfs.tech/reference/kubo/cli/#ipfs-dag)) can be used to import and explore the tree contents. |