diff options
author | Arnaud <[email protected]> | 2021-01-07 10:09:08 +0000 |
---|---|---|
committer | Arnaud <[email protected]> | 2021-01-07 11:10:02 +0000 |
commit | b6669b1c9b59c62c3347b0ed8e79d80831a8af66 (patch) | |
tree | 68904188512d9b9b1cc6e697e1246d8f14b6fe51 /crates/vfs/src | |
parent | 171c3c08fe245938fb25321394233de5fe2abc7c (diff) |
Remove the reference to `WalkdirLoaderHandle` in vfs documentation
This structure was deleted in commit #dad1333
Diffstat (limited to 'crates/vfs/src')
-rw-r--r-- | crates/vfs/src/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/crates/vfs/src/lib.rs b/crates/vfs/src/lib.rs index 9cf2afd33..9999bbb9e 100644 --- a/crates/vfs/src/lib.rs +++ b/crates/vfs/src/lib.rs | |||
@@ -18,9 +18,6 @@ | |||
18 | //! free-form via list of globs, it's up to the `Handle` to interpret the globs | 18 | //! free-form via list of globs, it's up to the `Handle` to interpret the globs |
19 | //! in any specific way. | 19 | //! in any specific way. |
20 | //! | 20 | //! |
21 | //! A simple `WalkdirLoaderHandle` is provided, which doesn't implement watching | ||
22 | //! and just scans the directory using walkdir. | ||
23 | //! | ||
24 | //! VFS stores a flat list of files. `FileSet` can partition this list of files | 21 | //! VFS stores a flat list of files. `FileSet` can partition this list of files |
25 | //! into disjoint sets of files. Traversal-like operations (including getting | 22 | //! into disjoint sets of files. Traversal-like operations (including getting |
26 | //! the neighbor file by the relative path) are handled by the `FileSet`. | 23 | //! the neighbor file by the relative path) are handled by the `FileSet`. |