From e3802aa0b57de06bf4e937090d1c73f31f17ccdf Mon Sep 17 00:00:00 2001 From: John McNamara Date: Thu, 29 Feb 2024 14:01:22 +0000 Subject: [PATCH] docs: fix minor typo Closes #296 --- lib/Excel/Writer/XLSX.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Excel/Writer/XLSX.pm b/lib/Excel/Writer/XLSX.pm index 8feafdad..53c98766 100644 --- a/lib/Excel/Writer/XLSX.pm +++ b/lib/Excel/Writer/XLSX.pm @@ -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 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