Skip to content

Commit

Permalink
🐛 correct comment 📜
Browse files Browse the repository at this point in the history
  • Loading branch information
amanmehara authored Feb 17, 2024
1 parent e9e5e4a commit 1d84b33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion C++/mathematics/number_theory/gcd.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ T gcd(T a, T b)
return gcd(b, a % b);
}

/// Extended Euclidean ALgorithm
/// Extended Euclidean Algorithm
template <typename T>
requires std::integral<T>
T gcd(T a, T b, T& x, T& y)
Expand Down

0 comments on commit 1d84b33

Please sign in to comment.