File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -123,7 +123,7 @@ help:
123
123
@echo ' build - Build binary at ./cmd/ipfs/ipfs'
124
124
@echo ' nofuse - Build binary with no fuse support'
125
125
@echo ' install - Build binary and install into $$GOBIN'
126
- @echo ' mod_tidy - Remove unused dependencis from go.mod files'
126
+ @echo ' mod_tidy - Remove unused dependencies from go.mod files'
127
127
# @echo ' dist_install - TODO: c.f. ./cmd/ipfs/dist/README.md'
128
128
@echo ''
129
129
@echo 'CLEANING TARGETS:'
Original file line number Diff line number Diff line change @@ -68,11 +68,11 @@ func parseErrNotFound(msg string) (error, bool) {
68
68
// Assume CIDs break on:
69
69
// - Whitespaces: " \t\n\r\v\f"
70
70
// - Semicolon: ";" this is to parse ipld.ErrNotFound wrapped in multierr
71
- // - Double Quotes: "\"" this is for parsing %q and %#v formating .
71
+ // - Double Quotes: "\"" this is for parsing %q and %#v formatting .
72
72
const cidBreakSet = " \t \n \r \v \f ;\" "
73
73
74
74
func parseIPLDErrNotFound (msg string ) (error , bool ) {
75
- // The patern we search for is:
75
+ // The pattern we search for is:
76
76
const ipldErrNotFoundKey = "ipld: could not find " /*CID*/
77
77
// We try to parse the CID, if it's invalid we give up and return a simple text error.
78
78
// We also accept "node" in place of the CID because that means it's an Undefined CID.
You can’t perform that action at this time.
0 commit comments