From 3917a3f7b974d394f43115652fdff83303b4162a Mon Sep 17 00:00:00 2001 From: Dominique Rau Date: Wed, 31 Aug 2016 22:59:41 +0200 Subject: [PATCH] docs(tts): fix plugin name (#514) --- src/plugins/text-to-speech.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/text-to-speech.ts b/src/plugins/text-to-speech.ts index 420b96018..41a16025e 100644 --- a/src/plugins/text-to-speech.ts +++ b/src/plugins/text-to-speech.ts @@ -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)); *