@cryptotaxi247 / kubo / commits / 6c6a55056

Fix typos

Dimitris Apostolou committed Mar 13, 2022 at 10:44 UTC 6c6a55056db47c9982d9d75e86272aba33b453bb
3 files changed +3 -3
config/addresses.go
+1 -1
@@ -4,7 +4,7 @@ package config
4 type Addresses struct {
5 Swarm []string // addresses for the swarm to listen on
6 Announce []string // swarm addresses to announce to the network, if len > 0 replaces auto detected addresses
7 - AppendAnnounce []string // similar to Announce but doesn't overwride auto detected addresses, they are just appended
7 + AppendAnnounce []string // similar to Announce but doesn't overwrite auto detected addresses, they are just appended
8 NoAnnounce []string // swarm addresses not to announce to the network
9 API Strings // address for the local API (RPC)
10 Gateway Strings // address to listen on for IPFS HTTP object gateway
config/gateway.go
+1 -1
@@ -62,7 +62,7 @@ type Gateway struct {
62
63 // NoDNSLink configures the gateway to _not_ perform DNS TXT record
64 // lookups in response to requests with values in `Host` HTTP header.
65 - // This flag can be overriden per FQDN in PublicGateways.
65 + // This flag can be overridden per FQDN in PublicGateways.
66 NoDNSLink bool
67
68 // PublicGateways configures behavior of known public gateways.
config/swarm.go
+1 -1
@@ -29,7 +29,7 @@ type SwarmConfig struct {
29 // Node will find and use advertised public relays when it determines that
30 // it's not reachable from the public internet.
31 //
32 - // Deprecated: This flag is deprecated and is overriden by
32 + // Deprecated: This flag is deprecated and is overridden by
33 // `Swarm.RelayClient.Enabled` if specified.
34 EnableAutoRelay bool `json:",omitempty"`
35