Skip to content

Commit

Permalink
fixing typo
Browse files Browse the repository at this point in the history
  • Loading branch information
wrcorcoran committed Sep 26, 2024
1 parent af23687 commit e284c74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/CXXGraph/Graph/Algorithm/Pow_impl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ template <typename T>
std::vector<std::vector<T>> exponentiation(std::vector<std::vector<T>> &mat,
unsigned int k) {
static_assert(std::is_arithmetic<T>::value,
"Type T must be any artithmetic type");
"Type T must be any arithmetic type");

// validate size and shape of matrix
if (mat.size() == 0 || mat.size() != mat[0].size()) {
Expand Down

0 comments on commit e284c74

Please sign in to comment.