Skip to content

Commit 101f875

Browse files
committed
fix comment
1 parent e097989 commit 101f875

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/matrix.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"""
44
GBMatrix{T}(nrows, ncols; fill = nothing)
55
6-
Create a GBMatrix of the specified size, defaulting to the maximum on each dimension, 2^60.
6+
Create a GBMatrix of the specified size.
77
"""
88
function GBMatrix{T}(nrows::Integer, ncols::Integer; fill::F = nothing) where {T, F}
99
m = Ref{LibGraphBLAS.GrB_Matrix}()

src/oriented.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ StorageOrders.storageorder(::OrientedGBMatrix{T, F, O}) where {T, F, O} = O
1212
"""
1313
GBMatrix{T}(nrows, ncols; fill = nothing)
1414
15-
Create a GBMatrix of the specified size, defaulting to the maximum on each dimension, 2^60.
15+
Create a GBMatrix of the specified size.
1616
"""
1717
function OrientedGBMatrix{T, F, O}(nrows::Integer, ncols::Integer; fill::F = nothing) where {T, F, O}
1818
m = Ref{LibGraphBLAS.GrB_Matrix}()

0 commit comments

Comments
 (0)