diff options
author | edef <edef@edef.eu> | 2024-08-09T07·02+0000 |
---|---|---|
committer | edef <edef@edef.eu> | 2024-08-09T08·33+0000 |
commit | 591c5ffe5347f05b98398f9bdaaa611f08970b8f (patch) | |
tree | fdb36a8517f2816152e4f4aa149939340a5a5a69 /tvix | |
parent | f648f17ec3dd9b99d6271f607d62004c321b7c8f (diff) |
docs(tvix/nix-compat/nar/wire): fix TOK_EXE grammar r/8462
Change-Id: I12b640fe1cbe7a4c69efe4660040486e510deadc Reviewed-on: https://cl.tvl.fyi/c/depot/+/12171 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix')
-rw-r--r-- | tvix/nix-compat/src/nar/wire/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/nix-compat/src/nar/wire/mod.rs b/tvix/nix-compat/src/nar/wire/mod.rs index 26da04e67ce1..01fe9c836f75 100644 --- a/tvix/nix-compat/src/nar/wire/mod.rs +++ b/tvix/nix-compat/src/nar/wire/mod.rs @@ -39,7 +39,7 @@ //! TOK_NAR ::= "nix-archive-1" "(" "type" //! TOK_SYM ::= "symlink" "target" //! TOK_REG ::= "regular" "contents" -//! TOK_EXE ::= "regular" "executable" "" +//! TOK_EXE ::= "regular" "executable" "" "contents" //! TOK_DIR ::= "directory" //! TOK_ENT ::= "entry" "(" "name" //! TOK_NOD ::= "node" "(" "type" |