From b61323d7d2600c5e6637497fcb3ba107b9f9fab6 Mon Sep 17 00:00:00 2001 From: Adrien Loison Date: Mon, 17 Oct 2016 11:54:49 -0700 Subject: [PATCH] Remove XLSX references in ODS Writer (#337) --- src/Spout/Writer/ODS/Internal/Worksheet.php | 2 +- src/Spout/Writer/ODS/Writer.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Spout/Writer/ODS/Internal/Worksheet.php b/src/Spout/Writer/ODS/Internal/Worksheet.php index 5d6ce42..0920b6d 100644 --- a/src/Spout/Writer/ODS/Internal/Worksheet.php +++ b/src/Spout/Writer/ODS/Internal/Worksheet.php @@ -40,7 +40,7 @@ class Worksheet implements WorksheetInterface /** * @param \Box\Spout\Writer\Common\Sheet $externalSheet The associated "external" sheet - * @param string $worksheetFilesFolder Temporary folder where the files to create the XLSX will be stored + * @param string $worksheetFilesFolder Temporary folder where the files to create the ODS will be stored * @throws \Box\Spout\Common\Exception\IOException If the sheet data file cannot be opened for writing */ public function __construct($externalSheet, $worksheetFilesFolder) diff --git a/src/Spout/Writer/ODS/Writer.php b/src/Spout/Writer/ODS/Writer.php index 4b35dfd..6571d00 100644 --- a/src/Spout/Writer/ODS/Writer.php +++ b/src/Spout/Writer/ODS/Writer.php @@ -20,7 +20,7 @@ class Writer extends AbstractMultiSheetsWriter /** @var string Temporary folder where the files to create the ODS will be stored */ protected $tempFolder; - /** @var Internal\Workbook The workbook for the XLSX file */ + /** @var Internal\Workbook The workbook for the ODS file */ protected $book; /**