Skip to content

Commit 0baa71f

Browse files
Merge pull request #1078 from kunzaatko/patch-1
fix(docs): Parameter names of `LinearProblem` in docs
2 parents e931f5e + dd4e61f commit 0baa71f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/problems/linear_problems.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ Optionally, an initial guess ``u₀`` can be supplied which is used for iterativ
8282
methods.
8383
8484
```julia
85-
LinearProblem{isinplace}(A,x,p=NullParameters();u0=nothing,kwargs...)
86-
LinearProblem(f::AbstractSciMLOperator,u0,p=NullParameters();u0=nothing,kwargs...)
85+
LinearProblem{isinplace}(A,b,p=NullParameters();u0=nothing,kwargs...)
86+
LinearProblem(f::AbstractSciMLOperator,b,p=NullParameters();u0=nothing,kwargs...)
8787
```
8888
8989
`isinplace` optionally sets whether the function is in-place or not, i.e. whether

0 commit comments

Comments
 (0)