1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
From: Kevin Murray <spam@kdmurray.id.au>
Date: Tue, 1 Dec 2015 13:23:54 +1100
Subject: Fix typo in help text
---
dawg.txt | 2 +-
src/dawgtxt.h | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/dawg.txt b/dawg.txt
index c01d246..0da5244 100644
--- a/dawg.txt
+++ b/dawg.txt
@@ -9,7 +9,7 @@ dawg -[scubvhqew?] [-o outputfile] file1 [file2...]
-v: display version information
-h: display help information
-?: same as -h
- -o outputfile: override ouput filename in the configuration file
+ -o outputfile: override output filename in the configuration file
Dawg will read stdin if filename is "-".
diff --git a/src/dawgtxt.h b/src/dawgtxt.h
index aa62921..548db5a 100644
--- a/src/dawgtxt.h
+++ b/src/dawgtxt.h
@@ -9,7 +9,7 @@
" -v: display version information\n" \
" -h: display help information\n" \
" -?: same as -h\n" \
-" -o outputfile: override ouput filename in the configuration file\n" \
+" -o outputfile: override output filename in the configuration file\n" \
"\n" \
" Dawg will read stdin if filename is \"-\".\n" \
"\n" \
|