Skip to content

Commit 7280595

Browse files
InterdisciplinaryPhysicsTeamClaudMorpitmonticone
committed
Clean docstrings of MultiplexGraphs scripts
Co-Authored-By: Claudio Moroni <43729990+ClaudMor@users.noreply.github.com> Co-Authored-By: Pietro Monticone <38562595+pitmonticone@users.noreply.github.com>
1 parent 8dd7696 commit 7280595

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

src/abstractmultiplexdigraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ end
209209
"""
210210
get_graph_of_layers(mg::M) where {M <: AbstractMultiplexDiGraph}
211211
212-
Get a [`DiGraphOfGraph`](@ref) of the layers of `mg`. the weight of each edge between layers are obtained by summing all edge weights in the corresponding interlayer. See [De Domenico et al. (2013)](https://doi.org/10.1103/PhysRevX.3.041022).
212+
Get a [`DiGraphOfGraph`](@ref) of the layers of `mg`. The weight of each edge between layers are obtained by summing all edge weights in the corresponding interlayer. See [De Domenico et al. (2013)](https://doi.org/10.1103/PhysRevX.3.041022).
213213
"""
214214
function get_graph_of_layers(
215215
mg::M; normalization::String="total_edges"

src/abstractmultiplexugraph.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
AbstractMultiplexUGraph{T,U} <: AbstractMultilayerUGraph{T,U}
33
4-
Abstract type representing an undirecte multiplex graph.
4+
Abstract type representing an undirected multiplex graph.
55
"""
66
abstract type AbstractMultiplexUGraph{T,U} <: AbstractMultilayerUGraph{T,U} end
77

@@ -138,7 +138,7 @@ end
138138
"""
139139
get_graph_of_layers(mg::M) where {M <: AbstractMultiplexUGraph}
140140
141-
Get a [`DiGraphOfGraph`](@ref) of the layers of `mg`. the weight of each edge between layers are obtained by summing all edge weights in the corresponding interlayer. See [De Domenico et al. (2013)](https://doi.org/10.1103/PhysRevX.3.041022).
141+
Get a [`DiGraphOfGraph`](@ref) of the layers of `mg`. The weight of each edge between layers are obtained by summing all edge weights in the corresponding interlayer. See [De Domenico et al. (2013)](https://doi.org/10.1103/PhysRevX.3.041022).
142142
"""
143143
function get_graph_of_layers(
144144
mg::M; normalization::String="total_edges"

src/multiplexdigraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
MultiplexDiGraph{T, U, G <: AbstractGraph{T}} <: AbstractMultiplexUGraph{T,U}
33
4-
A concrete type that can represent a general directed MultiplexDiGraph graph. That is, a multilayer graph whos einterlayers are all trivial in the sense that they only have links between vertices that represent the same node.
4+
A concrete type that can represent a general directed MultiplexDiGraph graph. That is, a multilayer graph whose interlayers are all trivial in the sense that they only have links between vertices that represent the same node.
55
66
# FIELDS
77

src/multiplexgraph.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
MultiplexGraph{T, U, G <: AbstractGraph{T}} <: AbstractMultiplexUGraph{T,U}
33
4-
A concrete type that can represent a general undirected multiplexGraph graph. That is, a multilayer graph whos einterlayers are all trivial in the sense that they only have links between vertices that represent the same node.
4+
A concrete type that can represent a general undirected multiplexGraph graph. That is, a multilayer graph whose interlayers are all trivial in the sense that they only have links between vertices that represent the same node.
55
66
# FIELDS
77

0 commit comments

Comments
 (0)