Only improved spelling in source code comments

This commit is contained in:
Christian Bläul
2017-11-25 13:42:07 +01:00
committed by Fonata
parent ccad5c8360
commit c818fff81a

View File

@@ -6,7 +6,7 @@ class parseCSV {
Class: parseCSV v0.4.3 beta Class: parseCSV v0.4.3 beta
https://github.com/parsecsv/parsecsv-for-php https://github.com/parsecsv/parsecsv-for-php
Fully conforms to the specifications lined out on wikipedia: Fully conforms to the specifications lined out on Wikipedia:
- http://en.wikipedia.org/wiki/Comma-separated_values - http://en.wikipedia.org/wiki/Comma-separated_values
Based on the concept of Ming Hong Ng's CsvFileParser class: Based on the concept of Ming Hong Ng's CsvFileParser class:
@@ -63,7 +63,7 @@ class parseCSV {
$csv->save(); $csv->save();
---------------- ----------------
# add row/entry to end of CSV file # add row/entry to end of CSV file
# - only recommended when you know the extact sctructure of the file # - only recommended when you know the exact structure of the file
$csv = new parseCSV(); $csv = new parseCSV();
$csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true); $csv->save('data.csv', array(array('1986', 'Home', 'Nowhere', '')), true);
---------------- ----------------
@@ -297,7 +297,7 @@ class parseCSV {
/** /**
* Error * Error
* Contains the error code if one occured * Contains the error code if one occurred
* *
* 0 = No errors found. Everything should be fine :) * 0 = No errors found. Everything should be fine :)
* 1 = Hopefully correctable syntax error was found. * 1 = Hopefully correctable syntax error was found.