about summary refs log tree commit diff
path: root/tvix/nix-compat
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/nix-compat')
-rw-r--r--tvix/nix-compat/src/nar/wire/mod.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/nar/wire/mod.rs b/tvix/nix-compat/src/nar/wire/mod.rs
index fc8b8d3510..b9e0212495 100644
--- a/tvix/nix-compat/src/nar/wire/mod.rs
+++ b/tvix/nix-compat/src/nar/wire/mod.rs
@@ -126,7 +126,8 @@ tag::make! {
     pub enum Entry[0] {
         /// End of directory
         None = TOK_PAR,
-        /// Directory entry, which must be followed by [Node]
+        /// Directory entry
+        /// Followed by a name string, [TOK_NOD], and a [Node].
         Some = TOK_ENT,
     }
 }