summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamyoul <samuel@samyoul.com>2016-12-15 11:52:20 +0000
committerGitHub <noreply@github.com>2016-12-15 11:52:20 +0000
commit405f5210adcba71e60f547c90717646cbac54976 (patch)
treeb97ea0ac5773dc54ecf8aff54d27e866e5a40b3f
parent33447984f7a7038fefaa5a6177e8407b66bc85b4 (diff)
downloadcsv-405f5210adcba71e60f547c90717646cbac54976.zip
csv-405f5210adcba71e60f547c90717646cbac54976.tar.gz
csv-405f5210adcba71e60f547c90717646cbac54976.tar.bz2
Minor spelling correction
801th to 801st
-rwxr-xr-xexamples/extract.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/extract.php b/examples/extract.php
index 61c768e..ec07f84 100755
--- a/examples/extract.php
+++ b/examples/extract.php
@@ -10,7 +10,7 @@ $inputCsv->setDelimiter(';');
//get the header
$headers = $inputCsv->fetchOne(0);
-//get at maximum 25 rows starting from the 801th row
+//get at maximum 25 rows starting from the 801st row
$res = $inputCsv->setOffset(800)->setLimit(25)->fetch();
?>
<!doctype html>