all: adjust case of "IPv4" and "IPv6"

Updates #docs

Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
This commit is contained in:
Brad Fitzpatrick
2023-06-27 09:00:34 -07:00
committed by Brad Fitzpatrick
parent e26376194d
commit a874f1afd8
4 changed files with 5 additions and 5 deletions

View File

@ -1647,7 +1647,7 @@ func checkIPv6(logf logger.Logf) error {
}
bs, err := os.ReadFile("/proc/sys/net/ipv6/conf/all/disable_ipv6")
if err != nil {
// Be conservative if we can't find the ipv6 configuration knob.
// Be conservative if we can't find the IPv6 configuration knob.
return err
}
disabled, err := strconv.ParseBool(strings.TrimSpace(string(bs)))