Fix a couple of typos: hexidecimal -> hexadecimal.

Reviewied by:	scottl
This commit is contained in:
roam 2003-12-12 11:08:51 +00:00
parent 599bb62238
commit 284d477413

View File

@ -33,15 +33,15 @@
.Dt HEXDUMP 9
.Sh NAME
.Nm hexdump
.Nd "Dump a block of bytes to the console in hexidecimal form"
.Nd "Dump a block of bytes to the console in hexadecimal form"
.Sh SYNOPSIS
.In sys/systm.h
.Ft void
.Fn hexdump "void *ptr" "int length" "const char *hdr" "int flags"
.Sh DESCRIPTION
Hexdump prints an array of bytes to the console in hexidecimal form, along with
Hexdump prints an array of bytes to the console in hexadecimal form, along with
the ASCII representation of the bytes, if possible. By default, each line of
output will start with an offset count, followed by 16 hexidecimal values,
output will start with an offset count, followed by 16 hexadecimal values,
followed by 16 ASCII characters.
.Bl -tag -width 6n
.It Fa ptr
@ -58,12 +58,12 @@ Flags for controlling the formatting of the output
Integer value of the number of bytes to display on each line. A value of 0
implies that the default value of 16 will be used.
.It Fa Bits 8-15
Character ASCII value to use as the separator for the hexidecimal output. A
Character ASCII value to use as the separator for the hexadecimal output. A
value of 0 implies that the default value of 32 (ASCII space) will be used.
.It Fa HD_OMIT_COUNT
Don't print the offset column at the beginning of each line
.It Fa HD_OMIT_HEX
Don't print the hexidecimal values on each line.
Don't print the hexadecimal values on each line.
.It Fa HD_OMIT_CHARS
Don't print the character values on each line.
.El