Erratum in Web Speech API synthesis example

dvcs.w3.org/hg/speech-api/raw-file/tip/speechapi.html#examples-synthesis

Example 1:

     speechSynthesis.speak(SpeechSynthesisUtterance('Hello World'));

Should be

     speechSynthesis.speak(new SpeechSynthesisUtterance('Hello World'));

Sam

Received on Thursday, 15 August 2013 07:57:08 UTC