Skip to content

Commit 4b69f54

Browse files
authored
Merge pull request #928 from nerdgency/patch-1
fix typos in csv.md (CSV Library)
2 parents bc77b6b + 5821082 commit 4b69f54

File tree

1 file changed

+2
-2
lines changed
  • docs/development/services

1 file changed

+2
-2
lines changed

docs/development/services/csv.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ lang: php
1717

1818
## Simple Example
1919

20-
The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associaitve arrays and objects and they can have differing keys and property names:
20+
The CSV library is built to take in rows of data as either associative arrays or as objects and either save the data as a file or return it as a string. Each row of data is added one at a time, but you can provide any combination of associative arrays and objects and they can have differing keys and property names:
2121

2222
$csv = ee('CSV');
2323
$csv->addRow(array(
@@ -51,7 +51,7 @@ Add a row of data to the CSV instance.
5151

5252
| Parameter | Type | Description |
5353
| --------- | -------------- | ---------------------------------------------------------------------- |
54-
| \$rowData | `Array/object` | A single row of data passed in as an object or as an associaitve array |
54+
| \$rowData | `Array/object` | A single row of data passed in as an object or as an associative array |
5555
| Returns | `Object` | `$this`, the CSV object itself so you can chain `->addRow()` and |
5656

5757
$csv->addRow(array(

0 commit comments

Comments
 (0)