Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b7dfa4f

Browse files
committed
Merge pull request #5872 from jenshnielsen/sphinx134
DOC: Fix issue with Sphinx 1.3.4 Discarded changes to .travis.yml from #5872
1 parent 250251b commit b7dfa4f

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

lib/matplotlib/dviread.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -841,7 +841,7 @@ def find_tex_file(filename, format=None):
841841
"""
842842
Call :program:`kpsewhich` to find a file in the texmf tree. If
843843
*format* is not None, it is used as the value for the
844-
:option:`--format` option.
844+
`--format` option.
845845
846846
Apparently most existing TeX distributions on Unix-like systems
847847
use kpathsea. I hear MikTeX (a popular distribution on Windows)

lib/matplotlib/patches.py

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2992,15 +2992,21 @@ class Bar(_Base):
29922992

29932993
def __init__(self, armA=0., armB=0., fraction=0.3, angle=None):
29942994
"""
2995-
*armA* : minimum length of armA
2995+
Parameters
2996+
----------
2997+
armA : float
2998+
minimum length of armA
29962999
2997-
*armB* : minimum length of armB
3000+
armB : float
3001+
minimum length of armB
29983002
2999-
*fraction* : a fraction of the distance between two points that
3000-
will be added to armA and armB.
3003+
fraction : float
3004+
a fraction of the distance between two points that
3005+
will be added to armA and armB.
30013006
3002-
*angle* : angle of the connecting line (if None, parallel to A
3003-
and B)
3007+
angle : float or None
3008+
angle of the connecting line (if None, parallel
3009+
to A and B)
30043010
"""
30053011
self.armA = armA
30063012
self.armB = armB

0 commit comments

Comments
 (0)