diff options
Diffstat (limited to 'tvix/store/src/import.rs')
-rw-r--r-- | tvix/store/src/import.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tvix/store/src/import.rs b/tvix/store/src/import.rs index ec45d9013edc..cb645a6e2e3c 100644 --- a/tvix/store/src/import.rs +++ b/tvix/store/src/import.rs @@ -130,9 +130,10 @@ fn process_entry( /// interacting with a [BlobService] and [DirectoryService]. /// It returns the root node or an error. /// -/// It's not interacting with a [PathInfoService], it's up to the caller to -/// possibly register it somewhere (and potentially rename it based on some -/// naming scheme. +/// It's not interacting with a +/// [PathInfoService](crate::pathinfoservice::PathInfoService), it's up to the +/// caller to possibly register it somewhere (and potentially rename it based on +/// some naming scheme. #[instrument(skip(blob_service, directory_service), fields(path=?p))] pub fn ingest_path<P: AsRef<Path> + Debug>( blob_service: Arc<dyn BlobService>, |