Skip to content

Commit 56f50a7

Browse files
setup.py: fix typos, grammar, punctuation
1 parent 64fb974 commit 56f50a7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ def long_desc_from_readme():
1414
with open('README.rst', 'r') as fd:
1515
long_description = fd.read()
1616

17-
# remove badges
17+
# Remove badges.
1818
long_description = re.compile(r'^\.\. start-badges.*^\.\. end-badges', re.M | re.S).sub('', long_description)
1919

20-
# strip links. keep link name and use literal text formatting
20+
# Strip links: keep the link text and use literal formatting.
2121
long_description = re.sub(r'`([^<`]+) </[^>]+>`_', '``\\1``', long_description)
2222

2323
return long_description

0 commit comments

Comments
 (0)