diff options
author | Mark Spruiell <mes@zeroc.com> | 2005-02-10 13:51:08 +0000 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2005-02-10 13:51:08 +0000 |
commit | 44bff6b3aaea61364631e06bc173aa1ce2bae839 (patch) | |
tree | b3c34fc043b31406fb31a74d478e23479740911b /cpp/src | |
parent | fixes for release build (diff) | |
download | ice-44bff6b3aaea61364631e06bc173aa1ce2bae839.tar.bz2 ice-44bff6b3aaea61364631e06bc173aa1ce2bae839.tar.xz ice-44bff6b3aaea61364631e06bc173aa1ce2bae839.zip |
updating docu for wildcard expression
Diffstat (limited to 'cpp/src')
-rw-r--r-- | cpp/src/IcePack/Parser.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/cpp/src/IcePack/Parser.cpp b/cpp/src/IcePack/Parser.cpp index 5794dc797ea..bea44f36caf 100644 --- a/cpp/src/IcePack/Parser.cpp +++ b/cpp/src/IcePack/Parser.cpp @@ -324,9 +324,13 @@ IcePack::Parser::usage() "object remove IDENTITY Remove an object from the object registry.\n" "object find TYPE Find all objects with the type TYPE.\n" "object describe EXPR Describe all registered objects whose stringified\n" - " identity match EXPR, e.g.: 'object describe Ice*'.\n" + " identities match the expression EXPR. A trailing\n" + " wildcard is supported in EXPR, for example\n" + " \"object describe Ice*\".\n" "object list EXPR List all registered objects whose stringified\n" - " identity match EXPR, e.g.: 'object list Ice*'.\n" + " identities match the expression EXPR. A trailing\n" + " wildcard is supported in EXPR, for example\n" + " \"object list Ice*\".\n" "\n" "shutdown Shut the IcePack registry down.\n" #ifdef GPL_BUILD |