Procházet zdrojové kódy

Move filetree to file_tree to unify file names.

Mathias Gottschlag před 5 roky
rodič
revize
f78208eb60
2 změnil soubory, kde provedl 2 přidání a 2 odebrání
  1. 0
    0
      src/file_tree.rs
  2. 2
    2
      src/lib.rs

src/filetree.rs → src/file_tree.rs Zobrazit soubor


+ 2
- 2
src/lib.rs Zobrazit soubor

@@ -2,11 +2,11 @@ use std::io;
2 2
 
3 3
 mod database;
4 4
 mod file_system_watcher;
5
-mod filetree;
5
+mod file_tree;
6 6
 
7 7
 pub use database::Database;
8 8
 pub use file_system_watcher::FileSystemWatcher;
9
-pub use filetree::FileTree;
9
+pub use file_tree::FileTree;
10 10
 
11 11
 // Sketch of the synchronization algorithm:
12 12
 //

Loading…
Zrušit
Uložit