Skip to content

Commit 64990ba

Browse files
authored
Fix formatting in a couple of docstrings (#86)
1 parent 495c260 commit 64990ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/dict_utils.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ end
2828
"""
2929
haskey(meta_graph, label)
3030
31-
Determine whether a meta_graph `meta_graph` contains the vertex `label`.
31+
Determine whether a MetaGraph `meta_graph` contains the vertex `label`.
3232
"""
3333
function Base.haskey(meta_graph::MetaGraph, label)
3434
return haskey(meta_graph.vertex_properties, label)
@@ -37,7 +37,7 @@ end
3737
"""
3838
haskey(meta_graph, label_1, label_2)
3939
40-
Determine whether a meta_graph `meta_graph` contains an edge from `label_1` to `label_2`.
40+
Determine whether a MetaGraph `meta_graph` contains an edge from `label_1` to `label_2`.
4141
4242
The order of `label_1` and `label_2` only matters if `meta_graph` is a digraph.
4343
"""

0 commit comments

Comments
 (0)