Skip to content

Commit

Permalink
Merge pull request #471 from evenfurther/doc-fix
Browse files Browse the repository at this point in the history
fix(doc): typo
  • Loading branch information
samueltardieu authored Nov 14, 2023
2 parents b08f3bb + 34fdb92 commit 7bccc6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/directed/edmonds_karp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ use std::hash::Hash;
#[allow(clippy::upper_case_acronyms)]
pub type EKFlows<N, C> = (Vec<Edge<N, C>>, C, Vec<Edge<N, C>>);

/// Type alias for representing an edge in a gaph
/// Type alias for representing an edge in a graph
pub type Edge<N, C> = ((N, N), C);

/// Compute the maximum flow and the minimal cut of a directed graph using the
Expand Down

0 comments on commit 7bccc6c

Please sign in to comment.