Skip to content

Commit 00de3c7

Browse files
committed
fix
1 parent e3a70dc commit 00de3c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/persistence.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ julia> using MetaGraphsNext
1010
1111
julia> using LightGraphs: Edge, Graph, loadgraph, savegraph
1212
13-
julia> complicated = MetaGraph(Graph());
13+
julia> example = MetaGraph(Graph());
1414
1515
julia> mktemp() do file, io
16-
savegraph(file, complicated)
17-
loadgraph(file, "something", MGFormat()) == complicated
16+
savegraph(file, simple)
17+
loadgraph(file, "something", MGFormat()) == example
1818
end
1919
true
2020
```

0 commit comments

Comments
 (0)