version bump and minor documentation fixes 0.9.2
authorAlexander Solovyov <piranha@piranha.org.ua>
Fri, 24 Jul 2009 14:26:44 +0300
changeset 53 1d0173e1b412
parent 52 5839699b1c01
child 54 52bb38d76d79
version bump and minor documentation fixes
README
docs/overview.rst
finaloption.py
--- 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'