Skip to content

Commit

Permalink
fixed var name
Browse files Browse the repository at this point in the history
  • Loading branch information
BioTurboNick committed Jul 6, 2021
1 parent 81c31e0 commit e6342e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions base/abstractarray.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2333,8 +2333,8 @@ function _typed_hvncat_shape(::Type{T}, shape::NTuple{N, Tuple}, row_first, as::
currentdims = zeros(Int, N)
blockcounts = zeros(Int, N)
shapepos = ones(Int, N)
shape = collect(shape)
shapelength = shape[end][1]
shapev = collect(shape)
shapelength = shapev[end][1]
lengthas = length(as)
shapelength == lengthas || throw(ArgumentError("number of elements does not match shape; expected $(shapelength), got $lengthas)"))

Expand Down

0 comments on commit e6342e4

Please sign in to comment.