Skip to content

Commit b584367

Browse files
committed
fix
1 parent 3662343 commit b584367

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/metagraph.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ edge. You can also attach arbitrary graph level metadata as `gprops`.
7171
```jldoctest example
7272
julia> using LightGraphs
7373
74-
julia> using MetaGraphs
74+
julia> using MetaGraphsNext
7575
7676
julia> colors = MetaGraph(Graph(), VertexMeta = Int, EdgeMeta = Symbol, gprops = "special")
7777
Meta graph based on a {0, 0} undirected simple Int64 graph with vertices indexed by Symbol(s), Int64(s) vertex metadata, Symbol(s) edge metadata, "special" as graph metadata, and default weight 1.0
@@ -137,7 +137,7 @@ julia> diameter(weighted)
137137
3.0
138138
```
139139
140-
MetaGraphs inherit many methods from LightGraphs. In general, inherited methods refer to
140+
MetaGraphsNext inherit many methods from LightGraphs. In general, inherited methods refer to
141141
vertices by codes, not labels.
142142
143143
```jldoctest example
@@ -196,7 +196,7 @@ julia> SimpleGraph(colors)
196196
{2, 0} undirected simple Int64 graph
197197
```
198198
199-
You can seemlessly make MetaGraphs based on DiGraphs as well.
199+
You can seemlessly make MetaGraphsNext based on DiGraphs as well.
200200
201201
```jldoctest example
202202
julia> rock_paper_scissors = MetaGraph(DiGraph(), Label = Symbol, EdgeMeta = Symbol);

0 commit comments

Comments
 (0)