Skip to content

Commit 4ec1a7a

Browse files
authored
Merge pull request #8 from diegozea/fbot/deps
Fix deprecations
2 parents 909de88 + 3a73a97 commit 4ec1a7a

File tree

4 files changed

+115
-115
lines changed

4 files changed

+115
-115
lines changed

Diff for: README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This package allows you to use a pairwise list as a matrix:
2020
![PLM](https://raw.githubusercontent.com/diegozea/PairwiseListMatrices.jl/master/docs/src/PLM_README.png)
2121

2222
```julia
23-
type PairwiseListMatrix{T,diagonal,VT} <: AbstractArray{T, 2}
23+
mutable struct PairwiseListMatrix{T,diagonal,VT} <: AbstractArray{T, 2}
2424
list::VT
2525
diag::VT
2626
nelements::Int

Diff for: docs/src/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ empty. But if the `diagonal` value is `false` the diagonal values are stored in
9494
the `diag` vector.
9595

9696
```julia
97-
type PairwiseListMatrix{T,diagonal,VT} <: AbstractArray{T, 2}
97+
mutable struct PairwiseListMatrix{T,diagonal,VT} <: AbstractArray{T, 2}
9898
list::VT
9999
diag::VT
100100
nelements::Int

0 commit comments

Comments
 (0)