From 618ffef31414716009a3504dafd69eb53db2a22f Mon Sep 17 00:00:00 2001 From: Lorenzo Zabot Date: Tue, 3 Dec 2024 10:16:01 +0100 Subject: [PATCH] Correct typo in comment --- lib/thor/parser/options.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/thor/parser/options.rb b/lib/thor/parser/options.rb index 497bcbb3..17d0cee5 100644 --- a/lib/thor/parser/options.rb +++ b/lib/thor/parser/options.rb @@ -144,7 +144,7 @@ def parse(args) # rubocop:disable Metrics/MethodLength def check_exclusive! opts = @assigns.keys # When option A and B are exclusive, if A and B are given at the same time, - # the diffrence of argument array size will decrease. + # the difference of argument array size will decrease. found = @exclusives.find{ |ex| (ex - opts).size < ex.size - 1 } if found names = names_to_switch_names(found & opts).map{|n| "'#{n}'"}