diff options
author | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-06-05 08:49:20 +0200 |
---|---|---|
committer | ignace nyamagana butera <nyamsprod@gmail.com> | 2015-06-05 08:49:20 +0200 |
commit | 4f23c95792acac522f9e73df4bd25398639cc1d8 (patch) | |
tree | b9eaf69772157bfdb2d04defc852862c1bc8ba84 | |
parent | 02bb5dfb7411527485b1370e141ea3e525912c5e (diff) | |
parent | 5057ab71a43daec5be63f8d41d6cd5d0711ace62 (diff) | |
download | csv-4f23c95792acac522f9e73df4bd25398639cc1d8.zip csv-4f23c95792acac522f9e73df4bd25398639cc1d8.tar.gz csv-4f23c95792acac522f9e73df4bd25398639cc1d8.tar.bz2 |
Merge pull request #104 from jblotus/jblotus-typofix
typo fix in example
-rwxr-xr-x | examples/bom_excel_macos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/bom_excel_macos.php b/examples/bom_excel_macos.php index 1858d31..bc27240 100755 --- a/examples/bom_excel_macos.php +++ b/examples/bom_excel_macos.php @@ -16,7 +16,7 @@ $csv = Reader::createFromPath(__DIR__.'/data/prenoms.csv'); //let's convert the CSV to be UTF-16_LE encoded with a tab delimiter. //we must use `createFromPath` to be able to use the stream capability -//we must use a temp file to be able to rewind the cursor file without loosing +//we must use a temp file to be able to rewind the cursor file without losing //the modification $writer = Writer::createFromPath('/tmp/toto.csv', 'w'); //adjust the output BOM to be used |