summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiles Bader <miles@gnu.org>1997-02-20 02:41:21 +0000
committerMiles Bader <miles@gnu.org>1997-02-20 02:41:21 +0000
commit1ceaf399c7244fcc37a4cee33f944047b13ba0f2 (patch)
treed6e7f3a7a5f2578735728956d9a88dec6197c305
parent4421a721e75ba89599593f278a9dffd8c5aea830 (diff)
(doc):
Make doc string come after options.
-rw-r--r--libstore/storeread.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstore/storeread.c b/libstore/storeread.c
index b27d2059..96a0b8e1 100644
--- a/libstore/storeread.c
+++ b/libstore/storeread.c
@@ -14,7 +14,7 @@ struct argp_option options[] = {
{0, 0}
};
char *arg_doc = "FILE [ADDR [LENGTH]]...";
-char *doc = "ADDR is in blocks, and defaults to 0; LENGTH is in bytes, and defaults to the remainder of FILE.";
+char *doc = "\vADDR is in blocks, and defaults to 0; LENGTH is in bytes, and defaults to the remainder of FILE.";
int
main (int argc, char **argv)