10000 Fixed typo by szemek · Pull Request #5357 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fixed typo #5357

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 30, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/matplotlib/axes/_axes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1388,7 +1388,7 @@ def plot(self, *args, **kwargs):
If you make multiple lines with one plot command, the kwargs
apply to all those lines, e.g.::

plot(x1, y1, x2, y2, antialised=False)
plot(x1, y1, x2, y2, antialiased=False)

Neither line will be antialiased.

Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/mpl-data/stylelib/classic.mplstyle
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ lines.dash_joinstyle : round # miter|round|bevel
lines.dash_capstyle : butt # butt|round|projecting
lines.solid_joinstyle : round # miter|round|bevel
lines.solid_capstyle : projecting # butt|round|projecting
lines.antialiased : True # render lines in antialised (no jaggies)
lines.antialiased : True # render lines in antialiased (no jaggies)

### Marker props
markers.fillstyle: full
Expand All @@ -27,7 +27,7 @@ markers.fillstyle: full
patch.linewidth : 1.0 # edge width in points
patch.facecolor : b
patch.edgecolor : k
patch.antialiased : True # render patches in antialised (no jaggies)
patch.antialiased : True # render patches in antialiased (no jaggies)

### FONT
#
Expand Down
4 changes: 2 additions & 2 deletions lib/matplotlib/rcsetup.py
Original file line number Diff line number Diff line change
Expand Up @@ -789,7 +789,7 @@ def validate_cycler(s):
'lines.marker': ['None', six.text_type], # black
'lines.markeredgewidth': [0.5, validate_float],
'lines.markersize': [6, validate_float], # markersize, in points
'lines.antialiased': [True, validate_bool], # antialised (no jaggies)
'lines.antialiased': [True, validate_bool], # antialiased (no jaggies)
'lines.dash_joinstyle': ['round', validate_joinstyle],
'lines.solid_joinstyle': ['round', validate_joinstyle],
'lines.dash_capstyle': ['butt', validate_capstyle],
Expand All @@ -802,7 +802,7 @@ def validate_cycler(s):
'patch.linewidth': [1.0, validate_float], # line width in points
'patch.edgecolor': ['k', validate_color], # black
'patch.facecolor': ['b', validate_color], # blue
'patch.antialiased': [True, validate_bool], # antialised (no jaggies)
'patch.antialiased': [True, validate_bool], # antialiased (no jaggies)

## Boxplot properties
'boxplot.notch': [False, validate_bool],
Expand Down
4 changes: 2 additions & 2 deletions matplotlibrc.template
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ backend : %(backend)s
#lines.dash_capstyle : butt # butt|round|projecting
#lines.solid_joinstyle : miter # miter|round|bevel
#lines.solid_capstyle : projecting # butt|round|projecting
#lines.antialiased : True # render lines in antialised (no jaggies)
#lines.antialiased : True # render lines in antialiased (no jaggies)

#markers.fillstyle: full # full|left|right|bottom|top|none

Expand All @@ -100,7 +100,7 @@ backend : %(backend)s
#patch.linewidth : 1.0 # edge width in points
#patch.facecolor : blue
#patch.edgecolor : black
#patch.antialiased : True # render patches in antialised (no jaggies)
#patch.antialiased : True # render patches in antialiased (no jaggies)

### FONT
#
Expand Down
0