Skip to content

Commit 9c03526

Browse files
author
Ossian O'Reilly
committed
Fix usage message.
1 parent fe2bc89 commit 9c03526

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

mydocstring/docstring.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
docstringout
2+
mydocstring
33
44
Usage:
5-
docstringout <file> <name> [-tmj] [-T=<tpl>]
6-
docstringout -h | --help
7-
docstringout --version
5+
mydocstring <file> <name> [-tmj] [-T=<tpl>]
6+
mydocstring -h | --help
7+
mydocstring --version
88
99
Options:
1010
-h --help Show help (this screen).
@@ -16,13 +16,13 @@
1616
1717
Examples:
1818
Extract the module docstring
19-
docstring module.py . --markdown
19+
mydocstring module.py . --markdown
2020
Extract a module function docstring
21-
docstring module.py function --markdown
21+
mydocstring module.py function --markdown
2222
Extract a class docstring
23-
docstring module.py Class --markdown
23+
mydocstring module.py Class --markdown
2424
Extract a method docstring
25-
docstring module.py Class.method --markdown
25+
mydocstring module.py Class.method --markdown
2626
2727
Help:
2828
Please see the issue tracker for the Github repository:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup
22

33
setup(name='mydocstring',
4-
version='0.1.1',
4+
version='0.1.2',
55
description="""A tool for extracting and converting Google-style docstrings to
66
plain-text, markdown, and JSON.""",
77
url='http://github.com/ooreilly/mydocstring',

0 commit comments

Comments
 (0)