1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-07-27 03:29:37 +00:00

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

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 {