Skip to content

Commit acf15bc

Browse files
fix typo
1 parent ead094f commit acf15bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Object_Methods/Matrix_Methods.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ GrB_Matrix{Int8}
193193
julia> GrB_Matrix_new(MAT, GrB_INT8, 4, 4)
194194
GrB_SUCCESS::GrB_Info = 0
195195
196-
julia> I = [ZeroBasedIndex1, 2, 2, 2, 3]; J = ZeroBasedIndex[1, 2, 1, 3, 3]; X = Int8[2, 3, 4, 5, 6]; n = 5;
196+
julia> I = ZeroBasedIndex[1, 2, 2, 2, 3]; J = ZeroBasedIndex[1, 2, 1, 3, 3]; X = Int8[2, 3, 4, 5, 6]; n = 5;
197197
198198
julia> GrB_Matrix_build(MAT, I, J, X, n, GrB_FIRST_INT8)
199199
GrB_SUCCESS::GrB_Info = 0

0 commit comments

Comments
 (0)