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

Skip to content

Commit 09ee788

Browse files
WeatherGodmdboom
authored andcommitted
Merge pull request #5357 from szemek/typo-fix
Fixed typo
1 parent a64e2a0 commit 09ee788

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

lib/matplotlib/axes/_axes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1388,7 +1388,7 @@ def plot(self, *args, **kwargs):
13881388
If you make multiple lines with one plot command, the kwargs
13891389
apply to all those lines, e.g.::
13901390
1391-
plot(x1, y1, x2, y2, antialised=False)
1391+
plot(x1, y1, x2, y2, antialiased=False)
13921392
13931393
Neither line will be antialiased.
13941394

lib/matplotlib/mpl-data/stylelib/classic.mplstyle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ lines.dash_joinstyle : round # miter|round|bevel
1414
lines.dash_capstyle : butt # butt|round|projecting
1515
lines.solid_joinstyle : round # miter|round|bevel
1616
lines.solid_capstyle : projecting # butt|round|projecting
17-
lines.antialiased : True # render lines in antialised (no jaggies)
17+
lines.antialiased : True # render lines in antialiased (no jaggies)
1818

1919
### Marker props
2020
markers.fillstyle: full
@@ -27,7 +27,7 @@ markers.fillstyle: full
2727
patch.linewidth : 1.0 # edge width in points
2828
patch.facecolor : b
2929
patch.edgecolor : k
30-
patch.antialiased : True # render patches in antialised (no jaggies)
30+
patch.antialiased : True # render patches in antialiased (no jaggies)
3131

3232
### FONT
3333
#

lib/matplotlib/rcsetup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ def validate_cycler(s):
789789
'lines.marker': ['None', six.text_type], # black
790790
'lines.markeredgewidth': [0.5, validate_float],
791791
'lines.markersize': [6, validate_float], # markersize, in points
792-
'lines.antialiased': [True, validate_bool], # antialised (no jaggies)
792+
'lines.antialiased': [True, validate_bool], # antialiased (no jaggies)
793793
'lines.dash_joinstyle': ['round', validate_joinstyle],
794794
'lines.solid_joinstyle': ['round', validate_joinstyle],
795795
'lines.dash_capstyle': ['butt', validate_capstyle],
@@ -802,7 +802,7 @@ def validate_cycler(s):
802802
'patch.linewidth': [1.0, validate_float], # line width in points
803803
'patch.edgecolor': ['k', validate_color], # black
804804
'patch.facecolor': ['b', validate_color], # blue
805-
'patch.antialiased': [True, validate_bool], # antialised (no jaggies)
805+
'patch.antialiased': [True, validate_bool], # antialiased (no jaggies)
806806

807807
## Boxplot properties
808808
'boxplot.notch': [False, validate_bool],

matplotlibrc.template

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ backend : %(backend)s
8888
#lines.dash_capstyle : butt # butt|round|projecting
8989
#lines.solid_joinstyle : miter # miter|round|bevel
9090
#lines.solid_capstyle : projecting # butt|round|projecting
91-
#lines.antialiased : True # render lines in antialised (no jaggies)
91+
#lines.antialiased : True # render lines in antialiased (no jaggies)
9292

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

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

105105
### FONT
106106
#

0 commit comments

Comments
 (0)