10000 Align quote type in examples. · matplotlib/matplotlib@62fdc1f · GitHub
[go: up one dir, main page]

Skip to content

Commit 62fdc1f

Browse files
committed
Align quote type in examples.
1 parent a85c113 commit 62fdc1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/users/next_whats_new/bar_label_formatting.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The ``fmt`` argument of `~matplotlib.axes.Axes.bar_label` now accepts
88
99
import matplotlib.pyplot as plt
1010
11-
fruit_names = ["Coffee", "Salted Caramel", "Pistachio"]
11+
fruit_names = ['Coffee', 'Salted Caramel', 'Pistachio']
1212
fruit_counts = [4000, 2000, 7000]
1313
1414
fig, ax = plt.subplots()
@@ -20,7 +20,7 @@ It also accepts callables:
2020

2121
.. code-block:: python
2222
23-
animal_names = ["Lion", "Gazelle", "Cheetah"]
23+
animal_names = ['Lion', 'Gazelle', 'Cheetah']
2424
mph_speed = [50, 60, 75]
2525
2626
fig, ax = plt.subplots()

0 commit comments

Comments
 (0)
0