summaryrefslogtreecommitdiff
path: root/Documentation/MANPAGE-render.bash
diff options
context:
space:
mode:
Diffstat (limited to 'Documentation/MANPAGE-render.bash')
-rwxr-xr-xDocumentation/MANPAGE-render.bash2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/MANPAGE-render.bash b/Documentation/MANPAGE-render.bash
index cc982aa..996290a 100755
--- a/Documentation/MANPAGE-render.bash
+++ b/Documentation/MANPAGE-render.bash
@@ -8,7 +8,7 @@ function render {
IN=$1
OUT=$2
echo "Rendering $IN to $OUT"
- echo ".\\\" This is a man page. View it using 'man ./$OUT'" > $OUT
+ echo ".\\\" This man page was generated from $IN. View it using 'man ./$OUT'" > $OUT
echo ".\\\"" >> $OUT
pandoc "$IN" -s -t man >> $OUT
}