Skip to content

Commit 7129e53

Browse files
authored
Fix typo (#152)
i missed a trailing `.
1 parent 4ca114b commit 7129e53

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/sparsevector.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ a *sorted* vector of non-zero indices, and a vector of non-zero values.
1919
For instance, the Vector `[5, 6, 0, 7]` can be represented as
2020
```julia
2121
SparseVector(4, [1, 2, 4], [5, 6, 7])
22-
````
22+
```
2323
This indicates that the index 1 is 5, the index 2 is 6, the index 3 is `zero(Int)`, and index 4 is 7.
2424
2525
It may be more convenient to create sparse vectors directly from dense vectors using `sparse` as

0 commit comments

Comments
 (0)