1
0
mirror of https://github.com/ndarilek/tts-rs.git synced 2024-10-22 20:19:38 +00:00

Remove unnecessary full module names.

This commit is contained in:
Nolan Darilek 2020-10-14 03:54:53 -05:00
parent a281d74e5c
commit e66b8403aa

View File

@ -150,9 +150,9 @@ lazy_static! {
pub struct TTS(Box<dyn Backend>);
unsafe impl std::marker::Send for TTS {}
unsafe impl Send for TTS {}
unsafe impl std::marker::Sync for TTS {}
unsafe impl Sync for TTS {}
impl TTS {
/**