From f99e5a121de61d08ea50224e3852eef49ac9e346 Mon Sep 17 00:00:00 2001 From: Ignace Nyamagana Butera Date: Tue, 28 Feb 2017 21:48:31 +0100 Subject: [PATCH] typo fix --- docs/9.0/inserting.md | 4 ++-- docs/9.0/properties.md | 2 -- docs/9.0/reading.md | 6 +++--- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/docs/9.0/inserting.md b/docs/9.0/inserting.md index 87ab538c..9050cc31 100644 --- a/docs/9.0/inserting.md +++ b/docs/9.0/inserting.md @@ -10,7 +10,7 @@ To create or update a CSV you are required to use the `League\Csv\Writer` connec ~~~php If a the Reader object has a header an the column uses undefined header value a RuntimeException is triggered.

+

If a Reader object has a header and the column uses undefined header value a RuntimeException is triggered.

### Statement::process @@ -449,10 +449,10 @@ $results = $reader->select(); count($results); //return the total number of records found ~~~ -`RecordSet::getColumnName` and `RecordSet::getColumnNames` returns the columns name information associated with the current object. This is usefull if the `RecordSet` object was created from: +`RecordSet::getColumnNames` returns the columns name information associated with the current object. This is usefull if the `RecordSet` object was created from: - a `Reader` object where `Reader::getHeader` is not empty; -- a `Statement` object where `Statement::columns` was used. +- and/or a `Statement` object where `Statement::columns` was used. #### Example: no header information was given