Skip to content

Commit cf15245

Browse files
committed
Update README and version
1 parent 7c2ce49 commit cf15245

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "SparseArraysBase"
22
uuid = "0d5efcca-f356-4864-8770-e1ed8d78f208"
33
authors = ["ITensor developers <support@itensor.org> and contributors"]
4-
version = "0.7.4"
4+
version = "0.7.5"
55

66
[deps]
77
Accessors = "7d9f7c33-5ae7-4f3b-8dc6-eff91059b697"

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -43,19 +43,19 @@ julia> Pkg.add("SparseArraysBase")
4343

4444
````julia
4545
using SparseArraysBase:
46-
SparseArrayDOK,
47-
SparseMatrixDOK,
48-
SparseVectorDOK,
49-
eachstoredindex,
50-
getstoredindex,
51-
getunstoredindex,
52-
isstored,
53-
setstoredindex!,
54-
setunstoredindex!,
55-
storedlength,
56-
storedpairs,
57-
storedvalues,
58-
zero!
46+
SparseArrayDOK,
47+
SparseMatrixDOK,
48+
SparseVectorDOK,
49+
eachstoredindex,
50+
getstoredindex,
51+
getunstoredindex,
52+
isstored,
53+
setstoredindex!,
54+
setunstoredindex!,
55+
storedlength,
56+
storedpairs,
57+
storedvalues,
58+
zero!
5959
using Test: @test, @test_throws
6060

6161
a = SparseArrayDOK{Float64}(undef, 2, 2)
@@ -135,14 +135,14 @@ b = a[1:2, 2]
135135
a = SparseArrayDOK{Float64}(undef, 2, 2)
136136
a .= 2
137137
for I in eachindex(a)
138-
@test a[I] == 2
138+
@test a[I] == 2
139139
end
140140
@test storedlength(a) == length(a)
141141

142142
a = SparseArrayDOK{Float64}(undef, 2, 2)
143143
fill!(a, 2)
144144
for I in eachindex(a)
145-
@test a[I] == 2
145+
@test a[I] == 2
146146
end
147147
@test storedlength(a) == length(a)
148148

0 commit comments

Comments
 (0)