From 61eb6c401f516b7fb94dedfff4a508a9ae103f38 Mon Sep 17 00:00:00 2001 From: Etienne Casanova Date: Tue, 15 Aug 2023 23:13:38 -0700 Subject: [PATCH] variable renaming --- src/surface_conditions/surface_conditions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/surface_conditions/surface_conditions.jl b/src/surface_conditions/surface_conditions.jl index 1fc957db08..c469e59a65 100644 --- a/src/surface_conditions/surface_conditions.jl +++ b/src/surface_conditions/surface_conditions.jl @@ -63,11 +63,11 @@ end surface_state(sfc_setup_wrapper::SurfaceState, _, _, _) = sfc_setup_wrapper surface_state( - sfc_setup_wrapper::Function, + wrapped_sfc_setup::Function, sfc_local_geometry_values, int_z_values, t, -) = sfc_setup_wrapper(sfc_local_geometry_values.coordinates, int_z_values, t) +) = wrapped_sfc_setup(sfc_local_geometry_values.coordinates, int_z_values, t) # This is a hack for meeting the August 7th deadline. It is to ensure that the # coupler will be able to construct an integrator before overwriting its surface