Skip to content

Commit

Permalink
fix some codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRouvreau committed Feb 11, 2025
1 parent 8e15b84 commit 93140af
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Cech_complex/test/test_cech_complex.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -294,7 +294,7 @@ BOOST_AUTO_TEST_CASE(Cech_create_complex_throw) {
std::vector<int> simplex = {0, 1, 2};
stree.insert_simplex_and_subfaces(simplex);
std::clog << "Check exception throw in debug mode" << std::endl;
// throw excpt because stree is not empty
// throw exception because stree is not empty
BOOST_CHECK_THROW(cech_complex_from_file.create_complex(stree, 1), std::invalid_argument);
}
#endif
2 changes: 1 addition & 1 deletion src/Cech_complex/utilities/delaunay_cech_persistence.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ int main(int argc, char* argv[]) {

pcoh.compute_persistent_cohomology(min_persistence);

// Output the persitence diagram in pers_diag_file
// Output the persistence diagram in pers_diag_file
if (pers_diag_file.empty()) {
pcoh.output_diagram();
} else {
Expand Down

0 comments on commit 93140af

Please sign in to comment.