From 7708c1a1a78ac993d2f94d95d846a033884b0af1 Mon Sep 17 00:00:00 2001 From: "Damian C. Rossney" Date: Mon, 15 Jul 2024 20:13:16 -0400 Subject: [PATCH] adjust line lengths to make Rubocop happy --- lib/dry/types/constrained.rb | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/lib/dry/types/constrained.rb b/lib/dry/types/constrained.rb index 633cb56d..90d1078b 100644 --- a/lib/dry/types/constrained.rb +++ b/lib/dry/types/constrained.rb @@ -75,8 +75,10 @@ def try(input, &block) end end - # @param *nullary_rules [Array] a list of rules that do not require an additional argument (e.g., :odd) - # @param **unary_rules [Hash] a list of rules that require an additional argument (e.g., gt: 0) + # @param *nullary_rules [Array] a list of rules that do not require an additional + # argument (e.g., :odd) + # @param **unary_rules [Hash] a list of rules that require an additional argument + # (e.g., gt: 0) # The parameters are merger to create a rules hash provided to {Types.Rule} and combined # using {&} with previous {#rule} #