Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
ak1394 committed Oct 13, 2016
1 parent 0ea8d49 commit 16398f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# React Native TTS

React Native TTS is a text-to-speech library for [React Native](https://facebook.github.io/react-native/) for iOS and Android.
React Native TTS is a text-to-speech library for [React Native](https://facebook.github.io/react-native/) on iOS and Android.

## Documentation

Expand Down Expand Up @@ -77,7 +77,7 @@ tts.set_default_voice('com.apple.ttsbundle.Moira-compact')
const ee = new NativeEventEmitter(NativeModules.TextToSpeech);
ee.addListener('tts-start', (utteranceId) => console.log("start", utteranceId));
ee.addListener('tts-finish', (utteranceId) => console.log("finish", utteranceId));
ee.addListener('tts-finish', (utteranceId) => console.log("cancel", utteranceId));
ee.addListener('tts-cancel', (utteranceId) => console.log("cancel", utteranceId));
```

## License
Expand Down

0 comments on commit 16398f2

Please sign in to comment.