From ce7a14c3cae3859b3d688138d17e2de80896fee2 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Mon, 31 May 2021 16:01:49 -0700 Subject: [PATCH] update comments --- lib/Perl/Tidy/Formatter.pm | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/lib/Perl/Tidy/Formatter.pm b/lib/Perl/Tidy/Formatter.pm index fedd89f2..0edba7dc 100644 --- a/lib/Perl/Tidy/Formatter.pm +++ b/lib/Perl/Tidy/Formatter.pm @@ -14140,7 +14140,11 @@ sub break_equals { # handle leading "if" and "unless" elsif ( $is_if_unless{ $tokens_to_go[$ibeg_2] } ) { - # FIXME: This is still experimental..may not be too useful + # Combine something like: + # next + # if ( $lang !~ /${l}$/i ); + # into: + # next if ( $lang !~ /${l}$/i ); next unless ( $this_line_is_semicolon_terminated -- 2.39.5