Skip to content

Commit f91a50c

Browse files
committed
Fix typo
* add missing closing parenthesis
1 parent 035e1b1 commit f91a50c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ speech_to_text.recognize(params, function(err, res) {
488488

489489
// or streaming
490490
fs.createReadStream('./resources/speech.wav')
491-
.pipe(speech_to_text.createRecognizeStream({ content_type: 'audio/l16; rate=44100' })
491+
.pipe(speech_to_text.createRecognizeStream({ content_type: 'audio/l16; rate=44100' }))
492492
.pipe(fs.createWriteStream('./transcription.txt'));
493493
```
494494

0 commit comments

Comments
 (0)