Skip to content

Commit

Permalink
Change "Matrix" to "matrix"
Browse files Browse the repository at this point in the history
  • Loading branch information
iolaszlo authored Dec 28, 2019
1 parent 98d5465 commit 698e70c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdlib/LinearAlgebra/src/blas.jl
Original file line number Diff line number Diff line change
Expand Up @@ -878,7 +878,7 @@ function hpmv!(uplo::AbstractChar,
throw(DimensionMismatch("x has length $(N), but y has length $(length(y))"))
end
if length(AP) < Int64(N*(N+1)/2)
throw(DimensionMismatch("Packed Hermitian Matrix A has size smaller than length(x) = $(N)."))
throw(DimensionMismatch("Packed Hermitian matrix A has size smaller than length(x) = $(N)."))
end
GC.@preserve x y AP hpmv!(uplo, N, convert(T, α), AP, pointer(x), BlasInt(stride(x, 1)), convert(T, β), pointer(y), BlasInt(stride(y, 1)))
y
Expand Down

0 comments on commit 698e70c

Please sign in to comment.