Skip to content

Commit

Permalink
Deleting double "the" in line 65. (petgraph#515)
Browse files Browse the repository at this point in the history
  • Loading branch information
atimaly authored and teuron committed Oct 9, 2022
1 parent c1b3b74 commit b3ff29b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/algo/matching.rs
Expand Up @@ -62,7 +62,7 @@ where

/// Returns `true` if given edge is in the matching, or `false` otherwise.
///
/// If any of the the nodes does not exist, `false` is returned.
/// If any of the nodes does not exist, `false` is returned.
pub fn contains_edge(&self, a: G::NodeId, b: G::NodeId) -> bool {
match self.mate(a) {
Some(mate) => mate == b,
Expand Down

0 comments on commit b3ff29b

Please sign in to comment.