Merge pull request #80 from madper/fix_typo

fix typo in comment
This commit is contained in:
Jakub Sztandera
2019-02-15 18:30:48 +01:00
committed by GitHub

2
cid.go
View File

@@ -167,7 +167,7 @@ func NewCidV1(codecType uint64, mhash mh.Multihash) Cid {
return Cid{string(buf[:n+hashlen])}
}
// Cid represents a self-describing content adressed
// Cid represents a self-describing content addressed
// identifier. It is formed by a Version, a Codec (which indicates
// a multicodec-packed content type) and a Multihash.
type Cid struct{ str string }