Skip to content

Commit

Permalink
Merge pull request #15 from absolutelyNoWarranty/fix-typo
Browse files Browse the repository at this point in the history
Fix typo in README.rst
  • Loading branch information
Lucretiel committed Nov 7, 2016
2 parents 95ffbbb + 4478311 commit 0f9bde4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Autocommand turns a function into a command-line program. It converts the functi
# This program takes exactly one argument and echos it.
@autocommand(__name__)
def echo(thing)
def echo(thing):
print(thing)
::
Expand Down Expand Up @@ -174,7 +174,7 @@ Autocommand also supports the creation of switch inverters. Pass ``add_nos=True`
.. code:: python
@autocommand(__name__, add_nos=True)
def example(verbos=False):
def example(verbose=False):
pass
::
Expand Down

0 comments on commit 0f9bde4

Please sign in to comment.