From 1cba95b26fe8c2579afe94417b7152e136b10f48 Mon Sep 17 00:00:00 2001 From: karlwessel Date: Tue, 7 Oct 2025 10:07:30 +0200 Subject: [PATCH] fix example code just removes an superfluous parenthesis --- docs/src/ecosystem/interface.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/ecosystem/interface.md b/docs/src/ecosystem/interface.md index 9df171dca..01ea41b21 100644 --- a/docs/src/ecosystem/interface.md +++ b/docs/src/ecosystem/interface.md @@ -5,7 +5,7 @@ This section is designed to guide developers who wish to write their own graph s All Graphs.jl functions rely on a standard API to function. As long as your graph structure is a subtype of [`AbstractGraph`](@ref) and implements the following API functions with the given return values, all functions within the Graphs.jl package should just work: - [`edges`](@ref) -- [`edgetype`](@ref) (example: `edgetype(g::CustomGraph) = Graphs.SimpleEdge{eltype(g)})`) +- [`edgetype`](@ref) (example: `edgetype(g::CustomGraph) = Graphs.SimpleEdge{eltype(g)}`) - [`has_edge`](@ref) - [`has_vertex`](@ref) - [`inneighbors`](@ref)