Skip to content

Commit afc1afa

Browse files
committed
Add REQUIRE file
1 parent dbe610b commit afc1afa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

REQUIRE

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
julia 0.7
2+
Requires

src/Tables.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ allocatecolumn(T, len) = Vector{T}(undef, len)
143143
end
144144
end
145145

146-
# add! will push! a value or setindex! a value depending on if the row-iterator HasLength or not
146+
# add! will push! or setindex! a value depending on if the row-iterator HasLength or not
147147
@inline add!(val, col::Int, nm::Symbol, ::Base.HasLength, nt, row) = setindex!(nt[col], val, row)
148148
@inline add!(val, col::Int, nm::Symbol, T, nt, row) = push!(nt[col], val)
149149

0 commit comments

Comments
 (0)