From 284d477413404d4aed569db964457a8da0e24d9f Mon Sep 17 00:00:00 2001 From: roam Date: Fri, 12 Dec 2003 11:08:51 +0000 Subject: [PATCH] Fix a couple of typos: hexidecimal -> hexadecimal. Reviewied by: scottl --- share/man/man9/hexdump.9 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/share/man/man9/hexdump.9 b/share/man/man9/hexdump.9 index 4170d4bf0b41..ea6cd4127385 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