about summary refs log tree commit diff
diff options
context:
space:
mode:
authoredef <edef@edef.eu>2024-04-26T08·11+0000
committeredef <edef@edef.eu>2024-04-26T08·22+0000
commitcab9c774b78aff674fa2f37cce87c9854fd6e1ac (patch)
tree5fa72d6f444fd7dfc83e2ed1f8cbc43db40c8f59
parent6e41e0917e56dccd14d368ca638b2f2c47915985 (diff)
chore(nix-compat/nar/wire): space Tag::Buf docs properly HEAD r/8017 canon
Change-Id: If15b14b5328b9e7f85ea3fa7644d327dfb50e1a6
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11523
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
-rw-r--r--tvix/nix-compat/src/nar/wire/tag.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/nix-compat/src/nar/wire/tag.rs b/tvix/nix-compat/src/nar/wire/tag.rs
index 55b93f9985..4982a0d707 100644
--- a/tvix/nix-compat/src/nar/wire/tag.rs
+++ b/tvix/nix-compat/src/nar/wire/tag.rs
@@ -10,6 +10,7 @@ pub trait Tag: Sized {
     const MIN: usize;
 
     /// Minimal suitably sized buffer for reading the wire representation
+    ///
     /// HACK: This is a workaround for const generics limitations.
     type Buf: AsMut<[u8]> + Send;