diff --git a/path/path.go b/path/path.go index f49dde110..e70d96384 100644 --- a/path/path.go +++ b/path/path.go @@ -10,10 +10,10 @@ import ( ) // A Path represents an ipfs content path: -// * /path/to/file -// * /ipfs/ -// * /ipns//path/to/folder -// * etc +// - /path/to/file +// - /ipfs/ +// - /ipns//path/to/folder +// - etc type Path string // ^^^ diff --git a/path/resolver/resolver.go b/path/resolver/resolver.go index ba7e1a2c1..74c5b27ed 100644 --- a/path/resolver/resolver.go +++ b/path/resolver/resolver.go @@ -63,7 +63,8 @@ type Resolver interface { // basicResolver implements the Resolver interface. // It references a FetcherFactory, which is uses to resolve nodes. // TODO: now that this is more modular, try to unify this code with the -// the resolvers in namesys. +// +// the resolvers in namesys. type basicResolver struct { FetcherFactory fetcher.Factory }