Minor comment fixes.

This commit is contained in:
Paul Dee 2023-11-23 20:01:16 +01:00
parent a0b3897278
commit 71bbfd0d78
3 changed files with 7 additions and 7 deletions

View file

@ -185,7 +185,7 @@ func main() {
n := &node{}
// Setup the Yggdrasil node itself.
// Set up the Yggdrasil node itself.
{
options := []core.SetupOption{
core.NodeInfo(cfg.NodeInfo),
@ -218,7 +218,7 @@ func main() {
logger.Infof("Your IPv6 subnet is %s", subnet.String())
}
// Setup the admin socket.
// Set up the admin socket.
{
options := []admin.SetupOption{
admin.ListenAddress(cfg.AdminListen),
@ -234,7 +234,7 @@ func main() {
}
}
// Setup the multicast module.
// Set up the multicast module.
{
options := []multicast.SetupOption{}
for _, intf := range cfg.MulticastInterfaces {
@ -255,7 +255,7 @@ func main() {
}
}
// Setup the TUN module.
// Set up the TUN module.
{
options := []tun.SetupOption{
tun.InterfaceName(cfg.IfName),