From 8f01067d2ca99966809789b672feabe565f981bd Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Sat, 26 Oct 2024 22:15:09 +0300 Subject: [PATCH] Touch up symbol rename missed in recent PR --- src/lib.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index bfb97bb0..e6778c69 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -196,10 +196,10 @@ pub struct Config { /// Configuration for the sort requires codemod pub sort_requires: SortRequiresConfig, /// Whether we should include a space between the function name and arguments. - /// * if space_after_function_names is set to [`SpaceAfterFunctions::Never`] a space is never used. - /// * if space_after_function_names is set to [`SpaceAfterFunctions::Definitions`] a space is used only for definitions. - /// * if space_after_function_names is set to [`SpaceAfterFunctions::Calls`] a space is used only for calls. - /// * if space_after_function_names is set to [`SpaceAfterFunctions::Always`] a space is used for both definitions and calls. + /// * if space_after_function_names is set to [`SpaceAfterFunctionNames::Never`] a space is never used. + /// * if space_after_function_names is set to [`SpaceAfterFunctionNames::Definitions`] a space is used only for definitions. + /// * if space_after_function_names is set to [`SpaceAfterFunctionNames::Calls`] a space is used only for calls. + /// * if space_after_function_names is set to [`SpaceAfterFunctionNames::Always`] a space is used for both definitions and calls. pub space_after_function_names: SpaceAfterFunctionNames, }