docs(tts): fix plugin name (#514)

This commit is contained in:
Dominique Rau 2016-08-31 22:59:41 +02:00 committed by Ibrahim Hadeed
parent 210346e1e3
commit 3917a3f7b9

View File

@ -10,15 +10,15 @@ export interface TTSOptions {
}
/**
* @name TTS
* @name TextToSpeech
* @description
* Text to Speech plugin
*
* @usage
* ```
* import {TTS} from 'ionic-native';
* import {TextToSpeech} from 'ionic-native';
*
* TTS.speak('Hello World')
* TextToSpeech.speak('Hello World')
* .then(() => console.log('Success'))
* .catch((reason: any) => console.log(reason));
*