diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-16 11:08:33 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-16 11:08:33 +0200 |
commit | 057cc047eb1cc321447e74d302ba4d2c452a11ec (patch) | |
tree | 6b6f37f993aa902dde8619d935d1ff8c7ebe2272 | |
parent | 6e71fee5bdb0fe338c7b9c3259a07d317ba36679 (diff) |
Add missing comma in option documentation
-rw-r--r-- | odb/pgsql/details/options.cli | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/odb/pgsql/details/options.cli b/odb/pgsql/details/options.cli index ef81993..e3e9423 100644 --- a/odb/pgsql/details/options.cli +++ b/odb/pgsql/details/options.cli @@ -34,7 +34,7 @@ namespace odb std::string --host { "<str>", - "PostgreSQL database host name or address (localhost by default)." + "PostgreSQL database host name or address (localhost by default)." }; std::string --port @@ -44,13 +44,13 @@ namespace odb Unix-domain connections." }; - std::string --options-file - { - "<file>" + std::string --options-file + { + "<file>", "Read additional options from <file>. Each option appearing on a separate line optionally followed by space and an option value. Empty lines and lines starting with \cb{#} are ignored." - }; + }; }; } } |