Skip to content

Commit 6ad36bb

Browse files
bug fix
1 parent 94a59ad commit 6ad36bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Operations/Reduce.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@ function GrB_Vector_reduce( # c = accum (c, reduce_to_scalar (u))
5959
return scalar[]
6060
end
6161

62-
function GrB_Matrix_reduce( # c = accum (c, reduce_to_scalar (u))
62+
function GrB_Matrix_reduce( # c = accum (c, reduce_to_scalar (A))
6363
accum::U, # optional accum for c=accum(c,t)
6464
monoid::GrB_Monoid, # monoid to do the reduction
65-
A::GrB_Matrix{T}, # vector to reduce
65+
A::GrB_Matrix{T}, # matrix to reduce
6666
desc::V # descriptor (currently unused)
6767
) where {T <: valid_types, U <: valid_accum_types, V <: valid_desc_types}
6868

0 commit comments

Comments
 (0)