diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2013-09-17 18:25:17 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2013-09-17 18:30:09 +0200 |
commit | 3a576e36604dcd8027dc134febd6677af90ef237 (patch) | |
tree | a7a8a3459a9d886ec8f53e1869bcaa2daa74bd5a /unoidl | |
parent | d8cc122981724d50c1285accba023f8dcf8d3b30 (diff) |
Fix usage message
Change-Id: I7d8b196d047b1e0075acdbf380a9b3ed750a7b90
Diffstat (limited to 'unoidl')
-rw-r--r-- | unoidl/source/unoidl-write.cxx | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/unoidl/source/unoidl-write.cxx b/unoidl/source/unoidl-write.cxx index dbb3ef7b7b7b..ad9268e59a6e 100644 --- a/unoidl/source/unoidl-write.cxx +++ b/unoidl/source/unoidl-write.cxx @@ -39,18 +39,18 @@ void badUsage() { << "Usage:" << std::endl << std::endl << " unoidl-write [<registries>] [@<entities file>] <unoidl file>" << std::endl << std::endl - << ("where each <registry> is either a new- or legacy-format .rdb" - " file or a") + << ("where each <registry> is either a new- or legacy-format .rdb file," + " a single .idl") << std::endl - << ("root directory of an .idl file tree, and the UTF-8 encoded" - " <entities file>") + << ("file, or a root directory of an .idl file tree; and the UTF-8" + " encoded <entities") << std::endl - << ("contains zero or more space-separated names of (non-module)" - " entities to include") + << ("file> contains zero or more space-separated names of (non-module)" + " entities to") << std::endl - << ("in the output, and, if omitted, defaults to the complete content" - " of the final") - << std::endl << "<registry>, if any." << std::endl; + << ("include in the output, and, if omitted, defaults to the complete" + " content of the") + << std::endl << "last <registry>, if any." << std::endl; std::exit(EXIT_FAILURE); } |