lib: fix spelling errors

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
This commit is contained in:
Stephen Hemminger 2019-08-12 18:21:10 -07:00
parent 69df9bf981
commit 260dc56ae3
2 changed files with 2 additions and 2 deletions

View File

@ -224,7 +224,7 @@ void print_color_null(enum output_type type,
}
}
/* Print line seperator (if not in JSON mode) */
/* Print line separator (if not in JSON mode) */
void print_nl(void)
{
if (!_jw)

View File

@ -168,7 +168,7 @@ static int get_netmask(unsigned int *val, const char *arg, int base)
if (!get_unsigned(val, arg, base))
return 0;
/* try coverting dotted quad to CIDR */
/* try converting dotted quad to CIDR */
if (!get_addr_1(&addr, arg, AF_INET) && addr.family == AF_INET) {
int b = mask2bits(addr.data[0]);