Skip to content

Commit 97ee7d2

Browse files
Update the docstring of ldiv!
1 parent 99d11d8 commit 97ee7d2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/LinearAlgebra.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,7 +398,7 @@ julia> Y = copy(B);
398398
399399
julia> ldiv!(Y, qr(A), B); # also try qr!(A) for the 2nd arg
400400
401-
julia> Y ≈ A \ B
401+
julia> Y ≈ A \\ B
402402
true
403403
```
404404
"""
@@ -428,7 +428,7 @@ julia> B0 = copy(B);
428428
429429
julia> ldiv!(lu(A), B); # also try lu!(A) for the 1st arg
430430
431-
julia> B ≈ A \ B0
431+
julia> B ≈ A \\ B0
432432
true
433433
```
434434
"""

0 commit comments

Comments
 (0)