Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 09ee788

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

File tree

Expand file treeCollapse file tree

4 files changed

+7
-7
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+7
-7
lines changed

‎lib/matplotlib/axes/_axes.py

Copy file name to clipboardExpand all lines: lib/matplotlib/axes/_axes.py
+1-1Lines 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

Copy file name to clipboardExpand all lines: lib/matplotlib/mpl-data/stylelib/classic.mplstyle
+2-2Lines 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

Copy file name to clipboardExpand all lines: lib/matplotlib/rcsetup.py
+2-2Lines 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

Copy file name to clipboardExpand all lines: matplotlibrc.template
+2-2Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.