Explorar el Código

Remove unnecessary crate path in type names.

Jing Yang hace 3 años
padre
commit
0f650beb1e
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/sync_log_entries.rs

+ 1 - 1
src/sync_log_entries.rs

@@ -34,7 +34,7 @@ impl Event {
 
 #[derive(Clone)]
 pub(crate) struct SyncLogEntriesComms {
-    tx: crate::utils::SharedSender<Event>,
+    tx: SharedSender<Event>,
 }
 
 impl SyncLogEntriesComms {