diff --git a/examples/99bottles.rs b/examples/99bottles.rs index 960d675..53ef9e3 100644 --- a/examples/99bottles.rs +++ b/examples/99bottles.rs @@ -15,7 +15,7 @@ fn main() -> Result<(), Error> { let mut tts = TTS::default()?; let mut bottles = 99; while bottles > 0 { - tts.speak(format!("{} bottles of beer on the wall,", bottles), false)?; + tts.speak(format!("{} bottles of beer on the wall,", bottles), true)?; tts.speak(format!("{} bottles of beer,", bottles), false)?; tts.speak("Take one down, pass it around", false)?; tts.speak("Give us a bit to drink this...", false)?;