--- a/README Fri Jul 24 13:34:48 2009 +0300
+++ b/README Fri Jul 24 14:26:44 2009 +0300
@@ -44,8 +44,8 @@
I think this mostly describes what's going on, except that I'd like to mention
one interesting feature - if you are using long name for option, you can use
-only partial name, for example ``./echo.py --nonew`` is valid command line. This
-is also true for subcommands: read about that and everything else you'd like to
-know in `documentation`_.
+only partial name, for example ``./echo.py --nonew`` a is valid command
+line. This is also true for subcommands: read about that and everything else
+you'd like to know in `documentation`_.
.. _documentation: http://hg.piranha.org.ua/finaloption/docs/
--- a/docs/overview.rst Fri Jul 24 13:34:48 2009 +0300
+++ b/docs/overview.rst Fri Jul 24 14:26:44 2009 +0300
@@ -128,8 +128,8 @@
if __name__ == '__main__':
dispatch(cmdtable=cmdtable)
-Example usage, calling ``complex_`` with 5 as argument for ``exit`` option,
-showing that command dispatcher will understand partial names of commands and
+Example usage, calling ``complex_`` with 5 as an argument for ``exit`` option,
+shows that command dispatcher will understand partial names of commands and
options::
app har --ex 5
--- a/finaloption.py Fri Jul 24 13:34:48 2009 +0300
+++ b/finaloption.py Fri Jul 24 14:26:44 2009 +0300
@@ -6,7 +6,7 @@
from itertools import imap
__all__ = ['command', 'dispatch']
-__version__ = '0.9.1'
+__version__ = '0.9.2'
__author__ = 'Alexander Solovyov'
__email__ = 'piranha@piranha.org.ua'