Skip to content

Commit

Permalink
Fix codespell
Browse files Browse the repository at this point in the history
  • Loading branch information
oruebel committed Aug 9, 2024
1 parent cbc0631 commit b175b17
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/testHDF5IO_docs_examples.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ TEST_CASE("SWMRmodeExamples", "[hdf5io]")
hdf5io->open();

// add a dataset
std::vector<int> testData(10000);
std::vector<int> testData(10000); // Initialize the testData to 0, 1, 2, ... 10000 with std::iota
std::iota(testData.begin(),
testData.end(),
1); // Initalize the testData to 0, 1, 2, ... 10000
1);
std::string dataPath = "/data";
SizeType numBlocks = 10; // write 10 chunks of
SizeType numSamples = testData.size();
Expand Down

0 comments on commit b175b17

Please sign in to comment.