diff options
author | brueffer <brueffer@FreeBSD.org> | 2011-09-14 20:13:10 +0000 |
---|---|---|
committer | brueffer <brueffer@FreeBSD.org> | 2011-09-14 20:13:10 +0000 |
commit | b3c2a1450629f5cb9384bf41c77bd7011a6eba5e (patch) | |
tree | f7b4a57f8ae48c47323f6d322fad013e6e42f7c2 /etc | |
parent | 0e8ff918fb8c9f8e97cce19735ec7f77110d134c (diff) | |
download | FreeBSD-src-b3c2a1450629f5cb9384bf41c77bd7011a6eba5e.zip FreeBSD-src-b3c2a1450629f5cb9384bf41c77bd7011a6eba5e.tar.gz |
Minor spelling, wording and punctuation fixes in comments.
PR: 155984
Submitted by: gcooper
Approved by: re (kib)
MFC after: 1 week
Diffstat (limited to 'etc')
-rw-r--r-- | etc/network.subr | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/etc/network.subr b/etc/network.subr index 8e9036d..579c701 100644 --- a/etc/network.subr +++ b/etc/network.subr @@ -32,7 +32,7 @@ # ifn_start ifn # Bring up and configure an interface. If some configuration is -# applied print the interface configuration. +# applied, print the interface configuration. # ifn_start() { @@ -53,7 +53,7 @@ ifn_start() } # ifn_stop ifn -# Shutdown and de-configure an interface. If action is taken +# Shutdown and de-configure an interface. If action is taken, # print the interface name. # ifn_stop() @@ -227,8 +227,8 @@ get_if_var() } # _ifconfig_getargs if [af] -# Echos the arguments for the supplied interface to stdout. -# returns 1 if empty. In general, ifconfig_getargs should be used +# Prints the arguments for the supplied interface to stdout. +# Returns 1 if empty. In general, ifconfig_getargs should be used # outside this file. _ifconfig_getargs() { @@ -272,7 +272,7 @@ ifconfig_getargs() } # autoif -# Returns 0 if the interface should be automaticly configured at +# Returns 0 if the interface should be automatically configured at # boot time and 1 otherwise. autoif() { @@ -449,7 +449,7 @@ ipv6if() # ipv6_autoconfif if # Returns 0 if the interface should be configured for IPv6 with -# Stateless Address Configuration, 1 otherwise. +# Stateless Address Configuration; 1 otherwise. ipv6_autoconfif() { local _if _tmpargs _arg |