From 4ed37e3825dafb62861fe0d078f725836aaf2067 Mon Sep 17 00:00:00 2001 From: Jeff Yoder Date: Wed, 4 Dec 2024 17:30:43 -0800 Subject: [PATCH] minor typo "to simulations can be safely restarted" --> "so simulations can be safely restarted" --- src/solver/type_getters.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/solver/type_getters.jl b/src/solver/type_getters.jl index 8513af2734..56dce977b5 100644 --- a/src/solver/type_getters.jl +++ b/src/solver/type_getters.jl @@ -730,7 +730,7 @@ function get_simulation(config::AtmosConfig) accum_str = join(CA.promote_period.(collect(periods_reductions)), ", ") checkpt_str = CA.promote_period(checkpoint_frequency) - @warn "The checkpointing frequency (dt_save_state_to_disk = $checkpt_str) should be an integer multiple of all diagnostics accumulation periods ($accum_str) to simulations can be safely restarted from any checkpoint" + @warn "The checkpointing frequency (dt_save_state_to_disk = $checkpt_str) should be an integer multiple of all diagnostics accumulation periods ($accum_str) so simulations can be safely restarted from any checkpoint" end end else