Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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