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

Fix return type in Tolk backend.

This commit is contained in:
Nolan Darilek 2022-03-31 13:38:39 -05:00
parent da19d5f16c
commit 4d01717e75

View File

@ -109,7 +109,7 @@ impl Backend for Tolk {
unimplemented!()
}
fn voice(&self) -> Result<Voice, Error> {
fn voice(&self) -> Result<Option<Voice>, Error> {
unimplemented!()
}