From ed67b7bf9a76ef829fa6327ec9e89ffcbdfc0191 Mon Sep 17 00:00:00 2001 From: Richard Littauer Date: Fri, 1 Jul 2016 18:36:55 +0100 Subject: [PATCH] go-ipfs-config: Changed so only explicit ipfs cli commands are lowercased License: MIT Signed-off-by: Richard Littauer --- config/bootstrap_peers.go | 2 +- config/config.go | 2 +- config/tour.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/bootstrap_peers.go b/config/bootstrap_peers.go index db6bad2e6..788112ec0 100644 --- a/config/bootstrap_peers.go +++ b/config/bootstrap_peers.go @@ -8,7 +8,7 @@ import ( ) // DefaultBootstrapAddresses are the hardcoded bootstrap addresses -// for ipfs. they are nodes run by the ipfs team. docs on these later. +// for IPFS. they are nodes run by the IPFS team. docs on these later. // As with all p2p networks, bootstrap is an important security concern. // // NOTE: This is here -- and not inside cmd/ipfs/init.go -- because of an diff --git a/config/config.go b/config/config.go index d367ac304..898cf56a4 100644 --- a/config/config.go +++ b/config/config.go @@ -15,7 +15,7 @@ import ( var log = logging.Logger("config") -// Config is used to load IPFS config files. +// Config is used to load ipfs config files. type Config struct { Identity Identity // local node's peer identity Datastore Datastore // local node's storage diff --git a/config/tour.go b/config/tour.go index cf9aef355..e22d8453f 100644 --- a/config/tour.go +++ b/config/tour.go @@ -1,6 +1,6 @@ package config -// Tour stores the ipfs tour read-list and resume point +// Tour stores the 'ipfs tour' read-list and resume point type Tour struct { Last string // last tour topic read // Done []string // all topics done so far