Skip to content

Commit

Permalink
Merge pull request #5545 from tosh1ki/fix_typo
Browse files Browse the repository at this point in the history
MAINT: Fix typo in linalg/basic.py
  • Loading branch information
ev-br committed Nov 27, 2015
2 parents 7f208fa + c5777a8 commit 9a2b313
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/linalg/basic.py
Expand Up @@ -368,7 +368,7 @@ def solve_toeplitz(c_or_cr, b, check_finite=True):
The solution is computed using Levinson-Durbin recursion, which is faster
than generic least-squares methods, but can be less numerically stable.
"""
# If numerical stability of this algorithim is a problem, a future
# If numerical stability of this algorithm is a problem, a future
# developer might consider implementing other O(N^2) Toeplitz solvers,
# such as GKO (http://www.jstor.org/stable/2153371) or Bareiss.
if isinstance(c_or_cr, tuple):
Expand Down

0 comments on commit 9a2b313

Please sign in to comment.