diff options
-rw-r--r-- | tvix/nix-compat/src/nar/wire/mod.rs | 3 |
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 fc8b8d3510aa..b9e021249543 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, } } |