From 89ccb779fba8f45bc203555000c1f322e9cb1998 Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Tue, 4 Jun 2024 14:05:26 -0600 Subject: [PATCH] Fix a grammar error. --- source/sundials/arkode.cc | 2 +- source/sundials/kinsol.cc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/sundials/arkode.cc b/source/sundials/arkode.cc index bae405956b..4cf253ddfb 100644 --- a/source/sundials/arkode.cc +++ b/source/sundials/arkode.cc @@ -178,7 +178,7 @@ namespace SUNDIALS time.set_desired_next_step_size(data.output_period); // Having set up all of the ancillary things, finally call the main - // ARKode function. One we return, check that what happened: + // ARKode function. Once we return, check what happened: // - If we have a pending recoverable exception, ignore it if SUNDIAL's // return code was zero -- in that case, SUNDIALS managed to indeed // recover and we no longer need the exception diff --git a/source/sundials/kinsol.cc b/source/sundials/kinsol.cc index 7ad8d70afd..21ffc7d92d 100644 --- a/source/sundials/kinsol.cc +++ b/source/sundials/kinsol.cc @@ -519,7 +519,7 @@ namespace SUNDIALS // Having set up all of the ancillary things, finally call the main KINSol - // function. One we return, check that what happened: + // function. Once we return, check what happened: // - If we have a pending recoverable exception, ignore it if SUNDIAL's // return code was zero -- in that case, SUNDIALS managed to indeed // recover and we no longer need the exception -- 2.39.5