Skip to content

Commit a6318d6

Browse files
committed
Fix docs build error
1 parent 6898797 commit a6318d6

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/Manifest.toml
22
docs/build/
33
.vscode/settings.json
4-
docs/src/tutorial
4+
docs/src/tutorial/*.md

docs/make.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
using Documenter
2+
using Graphs
23
using Literate
34
using MetaGraphsNext
45

docs/src/tutorial/.gitkeep

Whitespace-only changes.

src/weights.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ function MetaWeights(meta_graph::MetaGraph)
1818
end
1919

2020
"""
21-
weigths(meta_graph)
21+
weights(meta_graph)
2222
23-
Return a matrix-like `MetaWeights` object containing the edge weights for meta_graph `meta_graph`.
23+
Return a matrix-like `MetaWeights` object containing the edge weights for metagraph `meta_graph`.
2424
"""
2525
Graphs.weights(meta_graph::MetaGraph) = MetaWeights(meta_graph)
2626

0 commit comments

Comments
 (0)