And again, VSCode's find/replace didn't catch this. *grumble*

This commit is contained in:
Nolan Darilek 2021-03-31 11:12:42 -05:00
parent d9639c049b
commit 1011704b82
1 changed files with 1 additions and 1 deletions

View File

@ -208,7 +208,7 @@ impl Tts {
#[cfg(target_os = "android")]
Backends::Android => {
let tts = backends::Android::new()?;
Ok(TTS(Box::new(tts)))
Ok(Tts(Box::new(tts)))
}
};
if let Ok(backend) = backend {