diff options
author | Russ Allbery <rra@stanford.edu> | 2013-02-27 16:24:04 -0800 |
---|---|---|
committer | Russ Allbery <rra@stanford.edu> | 2013-02-27 16:54:37 -0800 |
commit | 9597a1b3fbab77ae4d6c1ba81ffc50942fc4010d (patch) | |
tree | ae68a79e6a249b6648e2efe637f7910762ec7936 | |
parent | 82902694563c7b140263e2fb17162f04cdb6cac2 (diff) |
Fix some formatting issues in the POD for create-ddl
Use a proper list for the options, use italics for the argument
to an option, specify that argument in the SYNOPSIS, and use bold
for the name of the program.
Change-Id: I225aea061efd13851b62046ff6dcbda0cb9478ec
Reviewed-on: https://gerrit.stanford.edu/853
Reviewed-by: Russ Allbery <rra@stanford.edu>
Tested-by: Russ Allbery <rra@stanford.edu>
-rwxr-xr-x | perl/create-ddl | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/perl/create-ddl b/perl/create-ddl index 10f126a..449f603 100755 --- a/perl/create-ddl +++ b/perl/create-ddl @@ -59,7 +59,7 @@ create-ddl - Create DDL files for Wallet =head1 SYNOPSIS -create-ddl [B<--help>] [B<--oldversion>] +B<create-ddl> [B<--help>] [B<--oldversion>=I<version>] =head1 DESCRIPTION @@ -77,16 +77,20 @@ SQLite parser creating keys without AUTOINCREMENT. =head1 OPTIONS -B<--help> +=over 4 + +=item B<--help> Prints the perldoc information (this document) for the script. -B<--oldversion>=<version> +=item B<--oldversion>=I<version> The version number of the previous version. If there are existing DDL files for this version, then we will also create diff files to upgrade a database from the old version to the current. +=back + =head1 AUTHORS Jon Robertson <jonrober@stanford.edu> |