Skip to content

Commit

Permalink
Fixing typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
odiazib committed Oct 16, 2024
1 parent aa416f1 commit fb7db62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/examples/TChem_AerosolChemistry.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ int main(int argc, char *argv[]) {
num_concentration = real_type_2d_view("num_concentration", nBatch, amd.nParticles_);
Kokkos::deep_copy(num_concentration, num_concentration_host);
}
printf("Number of nbacth %d \n",nBatch);
printf("Number of nbatch %d \n",nBatch);
auto writeState = [](const ordinal_type iter,
const real_type_1d_view_host _t,
const real_type_1d_view_host _dt,
Expand Down
2 changes: 1 addition & 1 deletion src/examples/TChem_AerosolChemistry_CVODE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ int main(int argc, char *argv[]) {
num_concentration = real_type_2d_view_host("num_concentration", nBatch, amd.nParticles_);
Kokkos::deep_copy(num_concentration, num_concentration_scenario);
}
printf("Number of nbacth %d \n",nBatch);
printf("Number of nbatch %d \n",nBatch);
auto writeState = [](const ordinal_type iter,
const real_type_1d_view_host _t,
const real_type_1d_view_host _dt,
Expand Down

0 comments on commit fb7db62

Please sign in to comment.