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)