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

Skip to content

Commit 4554f21

Browse files
committed
DOC: fix typo
1 parent 7da6e48 commit 4554f21

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)