From bc0ae5f17d8f7e860c31266f2247452d6f3e66f0 Mon Sep 17 00:00:00 2001 From: Ken Williams Date: Wed, 6 Nov 2024 14:07:18 -0600 Subject: [PATCH] Fix formatting in a couple of docstrings --- src/dict_utils.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/dict_utils.jl b/src/dict_utils.jl index 1bea515..7640c6a 100644 --- a/src/dict_utils.jl +++ b/src/dict_utils.jl @@ -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) @@ -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. """