]> git.donarmstrong.com Git - perltidy.git/commitdiff
update docs
authorSteve Hancock <perltidy@users.sourceforge.net>
Sat, 8 Jun 2024 03:09:56 +0000 (20:09 -0700)
committerSteve Hancock <perltidy@users.sourceforge.net>
Sat, 8 Jun 2024 03:09:56 +0000 (20:09 -0700)
bin/perltidy

index 000a435569415b79aaf22cdf4b3d1fad5bdaab6b..7fb447b49e4e7dfa80aff526f98c736ded92a538 100755 (executable)
@@ -6157,10 +6157,11 @@ B<Notes and Limitations:>
 =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<shift>
-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<shift> 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