Skip to content

Commit 04c62f5

Browse files
authored
thow -> throw (#77)
1 parent 96bfa9d commit 04c62f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ArrayLayouts"
22
uuid = "4c555306-a7a7-4459-81d9-ec55ddd5c99a"
33
authors = ["Sheehan Olver <[email protected]>"]
4-
version = "0.7.6"
4+
version = "0.7.7"
55

66
[deps]
77
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"

src/triangular.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ end
239239

240240
function materialize!(M::MatLdivMat{<:Union{TriangularLayout,BidiagonalLayout}})
241241
A,X = M.A,M.B
242-
size(A,2) == size(X,1) || thow(DimensionMismatch("Dimensions must match"))
242+
size(A,2) == size(X,1) || throw(DimensionMismatch("Dimensions must match"))
243243
@views for j in axes(X,2)
244244
ldiv!(A, X[:,j])
245245
end

0 commit comments

Comments
 (0)