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

Skip to content

Commit 53c2235

Browse files
authored
Merge pull request #25322 from meeseeksmachine/auto-backport-of-pr-25320-on-v3.7.0-doc
Backport PR #25320 on branch v3.7.0-doc (DOC: fix typo)
2 parents 62ad490 + 5dd64b6 commit 53c2235

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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)