Skip to content

Commit a302199

Browse files
committed
sort exports alphabetically
1 parent 8440661 commit a302199

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/SparseArraysBase.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@ export SparseArrayDOK,
99
eachstoredindex,
1010
isstored,
1111
oneelement,
12+
sparserand,
13+
sparserand!,
14+
sparsezeros,
1215
storedlength,
1316
storedpairs,
14-
storedvalues,
15-
sparsezeros,
16-
sparserand,
17-
sparserand!
17+
storedvalues
1818

1919
include("abstractsparsearrayinterface.jl")
2020
include("sparsearrayinterface.jl")

test/test_exports.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ using Test: @test, @testset
1212
:eachstoredindex,
1313
:isstored,
1414
:oneelement,
15+
:sparserand,
16+
:sparserand!,
17+
:sparsezeros,
1518
:storedlength,
1619
:storedpairs,
1720
:storedvalues,
18-
:sparsezeros,
19-
:sparserand,
20-
:sparserand!,
2121
]
2222
@test issetequal(names(SparseArraysBase), exports)
2323
end

0 commit comments

Comments
 (0)