Skip to content

Commit 0342965

Browse files
committed
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.
1 parent 99e9797 commit 0342965

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

netlink.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
// Package netlink provides a simple library for netlink. Netlink is
2-
// the interface a user-space program in linux uses to communicate with
3-
// the kernel. It can be used to add and remove interfaces, set up ip
4-
// addresses and routes, and confiugre ipsec. Netlink communication
2+
// the interface a user-space program in Linux uses to communicate with
3+
// the kernel. It can be used to add and remove interfaces, set up IP
4+
// addresses and routes, and configure ipsec. Netlink communication
55
// requires elevated privileges, so in most cases this code needs to
66
// be run as root. The low level primitives for netlink are contained
77
// in the nl subpackage. This package attempts to provide a high-level
8-
// interface that is loosly modeled on the iproute2 cli.
8+
// interface that is loosely modeled on the iproute2 CLI.
99
package netlink
1010

1111
import (

0 commit comments

Comments
 (0)