From 5cfe8e6e48cfb6c80c5322260b033c1b48ced66f Mon Sep 17 00:00:00 2001 From: web3-bot <81333946+web3-bot@users.noreply.github.com> Date: Tue, 23 Aug 2022 18:52:25 +0200 Subject: [PATCH] sync: update CI config files (#60) This commit was moved from ipfs/go-path@34ee0e38d040b22a4baf20740af45e43c8a5d50e --- path/path.go | 8 ++++---- path/resolver/resolver.go | 3 ++- 2 files changed, 6 insertions(+), 5 deletions(-) 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 }