Skip to content

Commit dd4e61f

Browse files
authored
fix(docs): Parameter names of LinearProblem in docs
The parameter names in the signature are confusing in the context of the descriptions of the parameters with the same names but different meanings under the signature in the `# Fields` section.
1 parent 5be7a8c commit dd4e61f

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)