summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorroam <roam@FreeBSD.org>2003-12-12 11:08:51 +0000
committerroam <roam@FreeBSD.org>2003-12-12 11:08:51 +0000
commit284d477413404d4aed569db964457a8da0e24d9f (patch)
treefa88142f985a91b6e0e835e013fcb5e228eba6da
parent599bb62238b12b1155bb85cde60a3deee25a3cc2 (diff)
downloadFreeBSD-src-284d477413404d4aed569db964457a8da0e24d9f.zip
FreeBSD-src-284d477413404d4aed569db964457a8da0e24d9f.tar.gz
Fix a couple of typos: hexidecimal -> hexadecimal.
Reviewied by: scottl
-rw-r--r--share/man/man9/hexdump.910
1 files changed, 5 insertions, 5 deletions
diff --git a/share/man/man9/hexdump.9 b/share/man/man9/hexdump.9
index 4170d4b..ea6cd41 100644
--- a/share/man/man9/hexdump.9
+++ b/share/man/man9/hexdump.9
@@ -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
OpenPOWER on IntegriCloud