Skip to content

Commit

Permalink
docs: fix minor typo
Browse files Browse the repository at this point in the history
Closes #296
  • Loading branch information
jmcnamara committed Feb 29, 2024
1 parent 79d5e28 commit e3802aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/Excel/Writer/XLSX.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2440,8 +2440,8 @@ Excel allows up to 7 outline levels. Therefore the C<$level> parameter should be
This method is the same as C<set_column()> except that C<$width> is in pixels.
$worksheet->set_column( 0, 0, 10 ); # Column A width set to 20 in character units
$worksheet->set_column( 1, 1, 75 ); # Column B set to the same width in pixels
$worksheet->set_column ( 0, 0, 10 ); # Column A width set to 10 in character units
$worksheet->set_column_pixels( 1, 1, 75 ); # Column B set to the same width in pixels
Expand Down

0 comments on commit e3802aa

Please sign in to comment.