From 6c6a55056db47c9982d9d75e86272aba33b453bb Mon Sep 17 00:00:00 2001 From: Dimitris Apostolou Date: Sun, 13 Mar 2022 10:44:38 +0200 Subject: [PATCH] Fix typos --- config/addresses.go | 2 +- config/gateway.go | 2 +- config/swarm.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/addresses.go b/config/addresses.go index 709b28d5847..f16563d6ad6 100644 --- a/config/addresses.go +++ b/config/addresses.go @@ -4,7 +4,7 @@ package config type Addresses struct { Swarm []string // addresses for the swarm to listen on Announce []string // swarm addresses to announce to the network, if len > 0 replaces auto detected addresses - AppendAnnounce []string // similar to Announce but doesn't overwride auto detected addresses, they are just appended + AppendAnnounce []string // similar to Announce but doesn't overwrite auto detected addresses, they are just appended NoAnnounce []string // swarm addresses not to announce to the network API Strings // address for the local API (RPC) Gateway Strings // address to listen on for IPFS HTTP object gateway diff --git a/config/gateway.go b/config/gateway.go index 644467891c9..e85cda98688 100644 --- a/config/gateway.go +++ b/config/gateway.go @@ -62,7 +62,7 @@ type Gateway struct { // NoDNSLink configures the gateway to _not_ perform DNS TXT record // lookups in response to requests with values in `Host` HTTP header. - // This flag can be overriden per FQDN in PublicGateways. + // This flag can be overridden per FQDN in PublicGateways. NoDNSLink bool // PublicGateways configures behavior of known public gateways. diff --git a/config/swarm.go b/config/swarm.go index d03406126e0..ba7b2255fd5 100644 --- a/config/swarm.go +++ b/config/swarm.go @@ -29,7 +29,7 @@ type SwarmConfig struct { // Node will find and use advertised public relays when it determines that // it's not reachable from the public internet. // - // Deprecated: This flag is deprecated and is overriden by + // Deprecated: This flag is deprecated and is overridden by // `Swarm.RelayClient.Enabled` if specified. EnableAutoRelay bool `json:",omitempty"`