Skip to content

Commit

Permalink
Touch up symbol rename (#903)
Browse files Browse the repository at this point in the history
Touch up symbol rename missed in recent PR
  • Loading branch information
alerque authored Oct 26, 2024
1 parent 5737ede commit 9008ed2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
}

Expand Down

0 comments on commit 9008ed2

Please sign in to comment.