From 72107ae9a80e54124648e253a8827d21e62097cb Mon Sep 17 00:00:00 2001 From: Hans Johnson Date: Fri, 12 Apr 2024 06:35:36 -0500 Subject: [PATCH] STYLE: Use gender-neutral language for example documentation Re-wrote the example code to avoid assumptions about the gender of the developer using the documentation. --- Modules/Core/Transform/include/itkCompositeTransform.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Modules/Core/Transform/include/itkCompositeTransform.h b/Modules/Core/Transform/include/itkCompositeTransform.h index ef90b3ec513..f3615c60901 100644 --- a/Modules/Core/Transform/include/itkCompositeTransform.h +++ b/Modules/Core/Transform/include/itkCompositeTransform.h @@ -42,11 +42,11 @@ namespace itk * Example: * A user wants to optimize two Affine transforms together, then add a * Deformation Field (DF) transform, and optimize it separately. - * He first adds the two Affines, then runs the optimization and both Affines - * transforms are optimized. Next, he adds the DF transform and calls + * They first add the two Affines, then run the optimization and both Affines + * transform parameters are optimized. Next, they add the DF transform and call * SetOnlyMostRecentTransformToOptimizeOn, which clears the optimization flags * for both of the affine transforms, and leaves the flag set only for the DF - * transform, since it was the last transform added. Now he runs the + * transform, since it was the last transform added. Now they run the * optimization and only the DF transform is optimized, but the affines are * included in the transformation during the optimization. *