Skip to content

Commit

Permalink
Fix README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
eunikitin committed Jun 3, 2017
1 parent 24f8fe0 commit 4ca7076
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ var aoa = convert.sheetToAoa(sheetData);
*/
```

### convert.aoaToSheet(data)
### aoaToSheet(data)

#### data

Expand All @@ -63,7 +63,7 @@ Type: Array
```js
var convert = require('csf-convert');

var sheetData = [
var aoa = [
[
{ t: 's', v: 'A1' },
undefined,
Expand All @@ -79,7 +79,7 @@ var sheetData = [
]
]

var aoa = convert.aoaToSheet(sheetData);
var sheetData = convert.aoaToSheet(sheetData);
/* result:
{
A1: { t: 's', v: 'A1' },
Expand Down

0 comments on commit 4ca7076

Please sign in to comment.