From 204cd50935f44121c6012fda42708a34e98b9eca Mon Sep 17 00:00:00 2001 From: Nolan Darilek Date: Tue, 3 Nov 2020 11:51:40 -0600 Subject: [PATCH] Change example to expose more WinRT breakage. --- examples/99bottles.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)?;