From fb1d30a80f7ea4d13dbca7ce230ba3c9027fe2d0 Mon Sep 17 00:00:00 2001 From: Steve Hancock Date: Fri, 7 Jun 2024 20:09:56 -0700 Subject: [PATCH] update docs --- bin/perltidy | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/bin/perltidy b/bin/perltidy index 000a4355..7fb447b4 100755 --- a/bin/perltidy +++ b/bin/perltidy @@ -6157,10 +6157,11 @@ B =over 4 =item * -This option works best for subs which unpack call args in an orderly -manner near the beginning of the sub from C<@_> and/or with C -operations. If individual elements of the @_ array are directly -accessed then the number of sub args is considered indeterminate. +This option works best for subs which unpack call args in an orderly manner +near the beginning of the sub from C<@_> and/or with C operations. It +will also work for some other common cases, such as direct access to individual +elements of the @_ array. However if the coding for arg extraction is complex +then the number of sub args will be considered indeterminate. =item * Sub calls made without parentheses around the args are not checked. @@ -6179,7 +6180,7 @@ args not matching sub declarations>. This is similar to the B<-dump> parameter described above except that any mismatches are reported in the error file and otherwise formatting continues -normally. Thus +normally. The basic usage is perltidy -wma somefile.pl -- 2.39.5