Skip to content

Commit

Permalink
Fix formatting in a couple of docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
kenahoo authored Nov 6, 2024
1 parent 495c260 commit bc0ae5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/dict_utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ end
"""
haskey(meta_graph, label)
Determine whether a meta_graph `meta_graph` contains the vertex `label`.
Determine whether a MetaGraph `meta_graph` contains the vertex `label`.
"""
function Base.haskey(meta_graph::MetaGraph, label)
return haskey(meta_graph.vertex_properties, label)
Expand All @@ -37,7 +37,7 @@ end
"""
haskey(meta_graph, label_1, label_2)
Determine whether a meta_graph `meta_graph` contains an edge from `label_1` to `label_2`.
Determine whether a MetaGraph `meta_graph` contains an edge from `label_1` to `label_2`.
The order of `label_1` and `label_2` only matters if `meta_graph` is a digraph.
"""
Expand Down

0 comments on commit bc0ae5f

Please sign in to comment.