From: Steve Hancock Date: Sat, 8 Jun 2024 03:09:56 +0000 (-0700) Subject: update docs X-Git-Tag: 20240511.04~12 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=fb1d30a80f7ea4d13dbca7ce230ba3c9027fe2d0;p=perltidy.git update docs --- 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