From 0342965d84f3e45727a1f4aec08d4e1aad68e891 Mon Sep 17 00:00:00 2001 From: Ben Hoyt Date: Fri, 5 Jun 2026 11:26:45 +1200 Subject: [PATCH] Fix spelling mistakes in netlink.go doc comment; capitalization tweaks This fixes a spelling mistake in configure ("confiugre") and loosely ("loosly"). It also capitalizes Linux (a proper noun) and changes IP and CLI to all-caps, as they're acronyms. --- netlink.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/netlink.go b/netlink.go index 9cb685dc8..14bba550c 100644 --- a/netlink.go +++ b/netlink.go @@ -1,11 +1,11 @@ // Package netlink provides a simple library for netlink. Netlink is -// the interface a user-space program in linux uses to communicate with -// the kernel. It can be used to add and remove interfaces, set up ip -// addresses and routes, and confiugre ipsec. Netlink communication +// the interface a user-space program in Linux uses to communicate with +// the kernel. It can be used to add and remove interfaces, set up IP +// addresses and routes, and configure ipsec. Netlink communication // requires elevated privileges, so in most cases this code needs to // be run as root. The low level primitives for netlink are contained // in the nl subpackage. This package attempts to provide a high-level -// interface that is loosly modeled on the iproute2 cli. +// interface that is loosely modeled on the iproute2 CLI. package netlink import (