Skip to content

Commit

Permalink
doc typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Abbott committed Oct 24, 2020
1 parent ab998e5 commit d8c1761
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/batched/batchedmul.jl
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,13 @@ storage_type(A) = typeof(A)
Reduces with `Base.promote_typejoin`, in order that this conveys useful information
for dispatching to BLAS. It does not tell you what container to allocate:
```
julia> storage_type(rand(2), rand(Float32, 2))
julia> storage_typejoin(rand(2), rand(Float32, 2))
Array{T,1} where T
julia> eltype(ans) <: LinearAlgebra.BlasFloat
false
julia> storage_type(rand(2), rand(2,3), rand(2,3,4))
julia> storage_typejoin(rand(2), rand(2,3), rand(2,3,4))
Array{Float64,N} where N
```
"""
Expand Down

0 comments on commit d8c1761

Please sign in to comment.