8000 FIX reviewer's comments · matplotlib/matplotlib@e00ee31 · GitHub
[go: up one dir, main page]

Skip to content

Commit e00ee31

Browse files
committed
FIX reviewer's comments
1 parent 5cba273 commit e00ee31

13 files changed

+23
-23
lines changed

examples/api/bbox_intersect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Changing colors of lines intersecting a box
44
===========================================
55
6-
The lines interescting the rectangle are colored in red, while the other one
6+
The lines intersecting the rectangle are colored in red, while the others
77
are left as blue lines. This example showcases the `intersect_bbox` function.
88
99
"""

examples/api/collections_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'''
22
=========================================================
3-
Line and Poly and RegularPoly Collection with autoscaling
3+
Line, Poly and RegularPoly Collection with autoscaling
44
=========================================================
55
66
For the first two subplots, we will use spirals. Their

examples/api/colorbar_basics.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Colorbar
44
========
55
6-
This example shows how to use colorbar by specify the mappable object (here
6+
This example shows how to use colorbar by specifying the mappable object (here
77
the imshow returned object) and the axes to attach the colorbar to.
88
"""
99

examples/api/compound_path.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
=============
55
66
Make a compound path -- in this case two simple polygons, a rectangle
7-
and a triangle. Use CLOSEOPOLY and MOVETO for the different parts of
7+
and a triangle. Use CLOSEPOLY and MOVETO for the different parts of
88
the compound path
99
"""
1010
import numpy as np

examples/api/date_index_formatter.py

+4Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
====================================
3-
Custom tick formatter for timeseries
4-
====================================
2+
=====================================
3+
Custom tick formatter for time series
4+
=====================================
55
66
When plotting time series, e.g., financial time series, one often wants
7-
to leave out days on which there is no data, eh weekends. The example
7+
to leave out days on which there is no data, i.e. weekends. The example
88
below shows how to use an 'index formatter' to achieve the desired plot
99
"""
1010
from __future__ import print_function

examples/api/engineering_formatter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
'''
22
=========================================
3-
Labeling ticks using engineering notations
3+
Labeling ticks using engineering notation
44
=========================================
55
66
Demo to show use of the engineering Formatter.

examples/api/filled_step.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""
22
=========================
3-
Hatched filled histograms
3+
Hatch-filled histograms
44
=========================
55
66
This example showcases the hatching capabilities of matplotlib by plotting

examples/api/mathtext_asarray.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
A mathtext image as numpy array
44
===============================
55
6-
This example shows how to make images from latex strings.
6+
This example shows how to make images from LaTeX strings.
77
"""
88

99
import matplotlib.mathtext as mathtext

examples/api/quad_bezier.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Bezier Curve
44
============
55
6-
This example showcases the PathPatch object to create a bezier polycurve path
6+
This example showcases the PathPatch object to create a Bezier polycurve path
77
patch.
88
"""
99

examples/api/radar_chart.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
=====================================
3-
Radar chart (aka spider or star chart
4-
=====================================
2+
======================================
3+
Radar chart (aka spider or star chart)
4+
======================================
55
66
This example creates a radar chart, also known as a spider or star chart [1]_.
77

examples/api/sankey_demo_old.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
========================
3-
Yet another Sankey chart
4-
========================
2+
==========================
3+
Yet another Sankey diagram
4+
==========================
55
66
This example showcases a more complex sankey diagram.
77
"""

examples/api/sankey_demo_rankine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
"""
22
===================
3-
Rankine power Cycle
3+
Rankine power cycle
44
===================
55
6-
Demonstrate the Sankey class with a practicle example of a Rankine power
6+
Demonstrate the Sankey class with a practical example of a Rankine power
77
cycle.
88
99
"""

examples/api/scatter_piecharts.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
2-
====================================
3-
Scatter plot with pie charts markers
4-
====================================
2+
===================================
3+
Scatter plot with pie chart markers
4+
===================================
55
66
This example makes custom 'pie charts' as the markers for a scatter plot.
77

0 commit comments

Comments
 (0)
0