We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6898797 commit a6318d6Copy full SHA for a6318d6
.gitignore
@@ -1,4 +1,4 @@
1
/Manifest.toml
2
docs/build/
3
.vscode/settings.json
4
-docs/src/tutorial
+docs/src/tutorial/*.md
docs/make.jl
@@ -1,4 +1,5 @@
using Documenter
+using Graphs
using Literate
using MetaGraphsNext
5
docs/src/tutorial/.gitkeep
src/weights.jl
@@ -18,9 +18,9 @@ function MetaWeights(meta_graph::MetaGraph)
18
end
19
20
"""
21
- weigths(meta_graph)
+ weights(meta_graph)
22
23
-Return a matrix-like `MetaWeights` object containing the edge weights for meta_graph `meta_graph`.
+Return a matrix-like `MetaWeights` object containing the edge weights for metagraph `meta_graph`.
24
25
Graphs.weights(meta_graph::MetaGraph) = MetaWeights(meta_graph)
26
0 commit comments