Skip to content

Commit 3d4ae50

Browse files
authored
chore(no-release): fix typo implemnetation -> implementation (#184)
1 parent 86ec43d commit 3d4ae50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/cid.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,9 +197,9 @@ export class CID {
197197
return value
198198
} else if (value != null && value.asCID === value) {
199199
// If value isn't instance of this CID class but `this.asCID === this` is
200-
// true it is CID instance coming from a different implemnetation (diff
200+
// true it is CID instance coming from a different implementation (diff
201201
// version or duplicate). In that case we rebase it to this `CID`
202-
// implemnetation so caller is guaranteed to get instance with expected
202+
// implementation so caller is guaranteed to get instance with expected
203203
// API.
204204
const { version, code, multihash, bytes } = value
205205
return new CID(version, code, multihash, bytes || encodeCID(version, code, multihash.bytes))

0 commit comments

Comments
 (0)