Skip to content

Commit ddd08cd

Browse files
authored
Remove extra "``" in docs for svd!` (#37424)
1 parent 483b637 commit ddd08cd

File tree

1 file changed

+0
-2
lines changed
  • stdlib/LinearAlgebra/src

1 file changed

+0
-2
lines changed

stdlib/LinearAlgebra/src/svd.jl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ default_svd_alg(A) = DivideAndConquer()
8888
8989
`svd!` is the same as [`svd`](@ref), but saves space by
9090
overwriting the input `A`, instead of creating a copy. See documentation of [`svd`](@ref) for details.
91-
```
9291
"""
9392
function svd!(A::StridedMatrix{T}; full::Bool = false, alg::Algorithm = default_svd_alg(A)) where T<:BlasFloat
9493
m,n = size(A)
@@ -358,7 +357,6 @@ Base.iterate(S::GeneralizedSVD, ::Val{:done}) = nothing
358357
359358
`svd!` is the same as [`svd`](@ref), but modifies the arguments
360359
`A` and `B` in-place, instead of making copies. See documentation of [`svd`](@ref) for details.
361-
```
362360
"""
363361
function svd!(A::StridedMatrix{T}, B::StridedMatrix{T}) where T<:BlasFloat
364362
# xggsvd3 replaced xggsvd in LAPACK 3.6.0

0 commit comments

Comments
 (0)