Skip to content

Commit 86dc4ac

Browse files
committed
args1 -> arg1
1 parent ecde50b commit 86dc4ac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/mapreduce.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ end
3333
Vectorized version of `mapreduce`. Applies `f` to each element of the arrays `A`, and reduces the result with `op`.
3434
"""
3535
@inline function vmapreduce(f::F, op::OP, arg1::AbstractArray{T}, args::Vararg{AbstractArray{T},A}) where {F,OP,T<:NativeTypes,A}
36-
if !(check_args(args1, args...) && all_dense(arg1, args...))
36+
if !(check_args(arg1, args...) && all_dense(arg1, args...))
3737
return mapreduce(f, op, arg1, args...)
3838
end
3939
N = length(arg1)

0 commit comments

Comments
 (0)