File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -185,7 +185,7 @@ vertices(g::AbstractGraph) = _NI("vertices")
185
185
186
186
Return (an iterator to or collection of) the edges of a graph.
187
187
For `AbstractSimpleGraph`s it returns a `SimpleEdgeIter`.
188
- The expressions `e in edges(g)` and `e ∈ edges(ga )` evaluate as
188
+ The expressions `e in edges(g)` and `e ∈ edges(g )` evaluate as
189
189
calls to [`has_edge`](@ref).
190
190
191
191
### Implementation Notes
@@ -255,7 +255,7 @@ Return true if the graph `g` has an edge from node `s` to node `d`.
255
255
An optional `has_edge(g, e)` can be implemented to check if an edge belongs
256
256
to a graph, including any data other than source and destination node.
257
257
258
- `e ∈ edges(g)` or `e ∈ edges(g)` evaluate as
258
+ `e in edges(g)` or `e ∈ edges(g)` evaluate as
259
259
calls to `has_edge`, c.f. [`edges`](@ref).
260
260
261
261
# Examples
You can’t perform that action at this time.
0 commit comments