Skip to content

Commit

Permalink
fix left doctests
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarrasch committed Sep 26, 2023
1 parent cebda41 commit 0cff2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/left.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ and return an adjoint vector.
## Examples
```jldoctest; setup=(using LinearAlgebra, LinearMaps)
julia> A=LinearMap([1.0 2.0; 3.0 4.0]); x=[1.0, 1.0]; x'A
1×2 Adjoint{Float64,Vector{Float64}}:
1×2 adjoint(::Vector{Float64}) with eltype Float64:
4.0 6.0
```
"""
Expand All @@ -31,7 +31,7 @@ and return a transpose vector.
## Examples
```jldoctest; setup=(using LinearAlgebra, LinearMaps)
julia> A=LinearMap([1.0 2.0; 3.0 4.0]); x=[1.0, 1.0]; transpose(x)*A
1×2 Transpose{Float64,Vector{Float64}}:
1×2 transpose(::Vector{Float64}) with eltype Float64:
4.0 6.0
```
"""
Expand Down

0 comments on commit 0cff2cd

Please sign in to comment.