Skip to content

Commit

Permalink
Minor changes to docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
ConnectedSystems committed Dec 15, 2024
1 parent a4ca436 commit 7ff146f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Network.jl
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ end
"""
inlets(sn::StreamfallNetwork, node_name::String)
Find nodes which provides inflows for given node.
Find ID(s) of nodes which provides inflows for given node.
"""
function inlets(sn::StreamfallNetwork, node_name::String)::Array{Int}
nid, _ = sn[node_name]
Expand All @@ -117,7 +117,7 @@ end
"""
outlets(sn::StreamfallNetwork, node_name::String)
Find node immediately downstream from given node.
Find ID(s) of node immediately downstream from given node.
"""
function outlets(sn::StreamfallNetwork, node_name::String)::Array{Int}
nid, _ = sn[node_name]
Expand Down

0 comments on commit 7ff146f

Please sign in to comment.