Skip to content

Commit acd2f67

Browse files
fix doctest
1 parent 8dc5a93 commit acd2f67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

machine_learning/linear_regression_vectorized.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ def gradient_descent(
6565
>>> import numpy as np
6666
>>> features = np.array([[1, 1], [1, 2], [1, 3]])
6767
>>> labels = np.array([[1], [2], [3]])
68-
>>> theta = gradient_descent(
68+
>>> theta = gradient_descent(
6969
... features, labels, alpha=0.01, iterations=1000 # doctest: +SKIP
7070
... )
7171

0 commit comments

Comments
 (0)