From e6d04f280e7a974fa5454ac4a6ba459cc81c37c1 Mon Sep 17 00:00:00 2001 From: Madper Xie Date: Fri, 15 Feb 2019 20:19:46 +0800 Subject: [PATCH] fix typo in comment --- cid.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cid.go b/cid.go index 36901e5..553731b 100644 --- a/cid.go +++ b/cid.go @@ -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 }