Skip to content

Commit 76a5b2e

Browse files
Merge pull request #296 from AayushSabharwal/as/bug-fix
fix: remove extra comma
2 parents c8bd18e + 7516f1f commit 76a5b2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/vector_of_array.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ end
212212
@inline Base.first(VA::AbstractVectorOfArray) = first(VA.u)
213213
@inline Base.last(VA::AbstractVectorOfArray) = last(VA.u)
214214
function Base.firstindex(VA::AbstractVectorOfArray)
215-
Base.depwarn("Linear indexing of `AbstractVectorOfArray` is deprecated. Change `A[i]` to `A.u[i]` ",, :firstindex)
215+
Base.depwarn("Linear indexing of `AbstractVectorOfArray` is deprecated. Change `A[i]` to `A.u[i]` ", :firstindex)
216216
return firstindex(VA.u)
217217
end
218218

0 commit comments

Comments
 (0)