Skip to content

Commit

Permalink
fixed sprintf doc missing $a in order of arguments example
Browse files Browse the repository at this point in the history
  • Loading branch information
grizzlysmit committed Oct 25, 2016
1 parent 49630ca commit 5b70244
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/Type/Str.pod6
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ So:
uses C<$a> for the width, C<$b> for the precision, and C<$c> as the value to
format; while:
NYI sprintf '<%*1$.*s>', $b, 'b';
NYI sprintf '<%*1$.*s>', $a, $b, 'b';
would use C<$a> for the width and precision and C<$b> as the value to format.
Expand Down

0 comments on commit 5b70244

Please sign in to comment.