8000 Merge pull request #25320 from larrybradley/fix-typo · matplotlib/matplotlib@430fb1d · GitHub
[go: up one dir, main page]

Skip to content

Commit 430fb1d

Browse files
authored
Merge pull request #25320 from larrybradley/fix-typo
2 parents ce54a4f + 4554f21 commit 430fb1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

galleries/examples/lines_bars_and_markers/fill_between_demo.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
x = np.linspace(0, 10, 11)
5353
y = [3.9, 4.4, 10.8, 10.3, 11.2, 13.1, 14.1, 9.9, 13.9, 15.1, 12.5]
5454

55-
# fit a linear curve an estimate its y-values and their error.
55+
# fit a linear curve and estimate its y-values and their error.
5656
a, b = np.polyfit(x, y, deg=1)
5757
y_est = a * x + b
5858
y_err = x.std() * np.sqrt(1/len(x) +

0 commit comments

Comments
 (0)
0