Skip to content

Commit 5a3977d

Browse files
authored
Merge pull request #123 from JimiHFord/patch-1
Update readme.md
2 parents 1313353 + f53a47e commit 5a3977d

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

readme.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ All you need nodejs csv to json converter.
2424
* [Convert from CSV string](#from-string)
2525
* [Parameters](#params)
2626
* [Result Transform](#result-transform)
27-
* [Synchronouse Transformer](#synchronouse-transformer)
28-
* [Asynchronouse Transformer](#asynchronouse-transformer)
27+
* [Synchronous Transformer](#synchronous-transformer)
28+
* [Asynchronous Transformer](#asynchronous-transformer)
2929
* [Convert to other data type](#convert-to-other-data-type)
3030
* [Hooks](#hooks)
3131
* [Events](#events)
@@ -172,7 +172,7 @@ csvtojson --help
172172

173173
To transform JSON result, (e.g. change value of one column), just simply add 'transform handler'.
174174

175-
## Synchronouse transformer
175+
## Synchronous transformer
176176

177177
```js
178178
var Converter=require("csvtojson").Converter;
@@ -197,9 +197,9 @@ csvConverter.fromString(csvString,function(err,result){
197197

198198
As shown in example above, it is able to apply any changes to the result json which will be pushed to down stream and "record_parsed" event.
199199

200-
## Asynchronouse Transformer
200+
## Asynchronous Transformer
201201

202-
Asynchronouse transformation can be achieve either through "record_parsed" event or creating a Writable stream.
202+
Asynchronous transformation can be achieve either through "record_parsed" event or creating a Writable stream.
203203

204204
### Use record_parsed
205205

0 commit comments

Comments
 (0)