Skip to content

Commit

Permalink
args1 -> arg1
Browse files Browse the repository at this point in the history
  • Loading branch information
chriselrod committed Jan 12, 2021
1 parent ecde50b commit 86dc4ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/mapreduce.jl
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ end
Vectorized version of `mapreduce`. Applies `f` to each element of the arrays `A`, and reduces the result with `op`.
"""
@inline function vmapreduce(f::F, op::OP, arg1::AbstractArray{T}, args::Vararg{AbstractArray{T},A}) where {F,OP,T<:NativeTypes,A}
if !(check_args(args1, args...) && all_dense(arg1, args...))
if !(check_args(arg1, args...) && all_dense(arg1, args...))
return mapreduce(f, op, arg1, args...)
end
N = length(arg1)
Expand Down

2 comments on commit 86dc4ac

@chriselrod
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/27845

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.9.19 -m "<description of version>" 86dc4ace925d783f15c5f6cb9c0afc871428795b
git push origin v0.9.19

Please sign in to comment.