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

Forgot we have to fully-qualify the type here.

This commit is contained in:
Nolan Darilek 2020-06-02 16:59:04 -05:00
parent d46b886875
commit d004404e4d

View File

@ -138,7 +138,7 @@ impl Backend for WinRT {
Ok(())
}
fn is_speaking(&self) -> Result<bool, Error> {
fn is_speaking(&self) -> std::result::Result<bool, Error> {
unimplemented!()
}
}