summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2016-01-27 20:11:01 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2016-01-27 20:11:01 +0000
commit3c0f58772036ca9fc1aaa2aec95f5f276ff9afcc (patch)
treeedae51da69161f2f830af127b830345a076f834a
parent88a76738b3e1c02fbb287fb3e055fb2fea620479 (diff)
Tweak some verbiage.
-rw-r--r--sbin/pdisk/pdisk.810
-rw-r--r--sbin/pdisk/pdisk.c10
2 files changed, 10 insertions, 10 deletions
diff --git a/sbin/pdisk/pdisk.8 b/sbin/pdisk/pdisk.8
index 6c4b4f69342..0582b0d4160 100644
--- a/sbin/pdisk/pdisk.8
+++ b/sbin/pdisk/pdisk.8
@@ -1,4 +1,4 @@
-.\" $OpenBSD: pdisk.8,v 1.26 2016/01/27 17:21:19 jmc Exp $
+.\" $OpenBSD: pdisk.8,v 1.27 2016/01/27 20:11:00 krw Exp $
.\"
.\" Copyright 1996,1997,1998 by Apple Computer, Inc.
.\" All Rights Reserved
@@ -68,7 +68,7 @@ The list of commands and their explanations are given below.
.It Em ?\&
verbose command help
.It Em C
-create a partition of the specified type
+create a partition of a specified type
.It Em c
create an
.Ox
@@ -76,7 +76,7 @@ partition
.It Em d
delete a partition
.It Em f
-full display of the specified entry
+full display of a partition
.It Em h
command help
.It Em i
@@ -94,9 +94,9 @@ reorder an entry in the partition map
.It Em s
change the size of the partition map
.It Em t
-change the specified partition's type
+change the type of a partition
.It Em w
-write the partition map
+write the partition map to disk
.El
.Pp
Commands which take arguments prompt for each argument in turn.
diff --git a/sbin/pdisk/pdisk.c b/sbin/pdisk/pdisk.c
index 87e29cb7134..27138e1a740 100644
--- a/sbin/pdisk/pdisk.c
+++ b/sbin/pdisk/pdisk.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: pdisk.c,v 1.75 2016/01/27 16:38:37 krw Exp $ */
+/* $OpenBSD: pdisk.c,v 1.76 2016/01/27 20:11:00 krw Exp $ */
/*
* pdisk - an editor for Apple format partition tables
@@ -156,10 +156,10 @@ edit(struct partition_map_header **mapp)
case 'h':
printf("Commands are:\n"
" ? verbose command help\n"
- " C create a partition of the specified type\n"
+ " C create a partition of a specified type\n"
" c create an OpenBSD partition\n"
" d delete a partition\n"
- " f full display of the specified entry\n"
+ " f full display of a partition\n"
" h command help\n"
" i (re)initialize the partition map\n"
" n (re)name a partition\n"
@@ -168,8 +168,8 @@ edit(struct partition_map_header **mapp)
" q quit editing\n"
" r reorder an entry in the partition map\n"
" s change the size of the partition map\n"
- " t change the specified partition's type\n"
- " w write the partition map\n");
+ " t change the type of a partition\n"
+ " w write the partition map to disk\n");
break;
case 'P':
show_data_structures(map);