From 05906a2bf2e9c598eb95c6fa711eae8382578e0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Mei=C3=9Fner?= <936176+t-nil@users.noreply.github.com> Date: Sat, 4 Jan 2025 13:59:01 +0100 Subject: [PATCH] Update options.rs --- src/config/options.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/config/options.rs b/src/config/options.rs index 14ffdd21707..2cddd1ff85e 100644 --- a/src/config/options.rs +++ b/src/config/options.rs @@ -220,10 +220,10 @@ pub enum Verbosity { #[derive(Deserialize, Serialize, Clone, Debug, PartialEq)] pub struct WidthHeuristics { - // Maximum width of the args of a function call before falling back - // to vertical formatting. + // Maximum width of the args of a function call (or tuple constructor) before + // falling back to vertical formatting. pub(crate) fn_call_width: usize, - // Maximum width of the args of a function-like attributes before falling + // Maximum width of the args of a function-like attribute before falling // back to vertical formatting. pub(crate) attr_fn_like_width: usize, // Maximum width in the body of a struct lit before falling back to