diff options
author | Florian Klink <flokli@flokli.de> | 2023-09-03T08·02+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-09-03T10·01+0000 |
commit | 583cdec3d8f8392c5c291511345eb555686805f5 (patch) | |
tree | 52179728625f46f5810f9c89643cd97096849046 /tvix/store/src/fuse/mod.rs | |
parent | 9bbda4421eaab452fc2bd1b6ce0b862cc3988fd0 (diff) |
docs(tvix/store): address cargo doc warnings r/6548
Fix some broken link references. Change-Id: I69c9b2b62af35bb777e4df1a01ba3181a368be47 Reviewed-on: https://cl.tvl.fyi/c/depot/+/9214 Reviewed-by: tazjin <tazjin@tvl.su> Autosubmit: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/fuse/mod.rs')
-rw-r--r-- | tvix/store/src/fuse/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tvix/store/src/fuse/mod.rs b/tvix/store/src/fuse/mod.rs index 077c6ce048bf..8b44f7db550e 100644 --- a/tvix/store/src/fuse/mod.rs +++ b/tvix/store/src/fuse/mod.rs @@ -41,12 +41,12 @@ use self::inode_tracker::InodeTracker; /// This means, we need to have a stable mapping of inode numbers to the /// corresponding store nodes. /// -/// We internally delegate all inode allocation and state keeping to a -/// [InodeTracker], and store the currently "explored" store paths together with +/// We internally delegate all inode allocation and state keeping to the +/// inode tracker, and store the currently "explored" store paths together with /// root inode of the root. /// /// There's some places where inodes are allocated / data inserted into -/// [self.inode_tracker], if not allocated before already: +/// the inode tracker, if not allocated before already: /// - Processing a `lookup` request, either in the mount root, or somewhere /// deeper /// - Processing a `readdir` request |