Skip to content

Commit a0bee73

Browse files
Merge pull request #294 from goggle/typos01
Fix some typos
2 parents e3bcd87 + ea75ce8 commit a0bee73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/src/solvers/solvers.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Linear System Solvers](@id linearsystemsolvers)
22

3-
`solve(prob::LinearProlem,alg;kwargs)`
3+
`solve(prob::LinearProblem,alg;kwargs)`
44

55
Solves for ``Au=b`` in the problem defined by `prob` using the algorithm
66
`alg`. If no algorithm is given, a default algorithm will be chosen.
@@ -171,7 +171,7 @@ subroutines from the book "Computer Solution of Large Sparse Positive Definite
171171
Systems" by Alan George and Joseph Liu. Originally written in Fortran 77, later
172172
rewritten in Fortran 90. Here is the software translated into Julia.
173173
The Julia rewrite is released under the MIT license with an express permission
174-
from the authors of the Fortran package. The package uses mutiple
174+
from the authors of the Fortran package. The package uses multiple
175175
dispatch to route around standard BLAS routines in the case e.g. of arbitrary-precision
176176
floating point numbers or ForwardDiff.Dual.
177177
This e.g. allows for Automatic Differentiation (AD) of a sparse-matrix solve.

test/sparse_vector.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ n = length(x0)
3737
hess_mat = sparse(rowval, colval, hess_sparse(x0), n, n)
3838
grad_vec = sparsevec(gradinds, grad_sparse(x0), n)
3939

40-
# # Converting grad_vec to dense succeds in solving
40+
# # Converting grad_vec to dense succeeds in solving
4141
prob = LinearProblem(hess_mat, grad_vec)
4242
linsolve = init(prob)
4343
@test solve(linsolve).u hess_mat \ Array(grad_vec)

0 commit comments

Comments
 (0)