about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2023-01-26T22·46+0300
committerclbot <clbot@tvl.fyi>2023-01-26T23·30+0000
commit1028aff105dfda292698d023594f2ac8498c0851 (patch)
tree56b3ce78ee384f8965af72777102a25464d98d84
parent54b4fb8b16c3fee070bc4bc914ed487940a4546f (diff)
chore(tvix/eval): remove dead comment r/5763
Change-Id: Icedb7f272e5067569b8dbf1c2d8b0fdd352b8e12
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7936
Tested-by: BuildkiteCI
Autosubmit: tazjin <tazjin@tvl.su>
Reviewed-by: flokli <flokli@flokli.de>
-rw-r--r--tvix/eval/src/value/arbitrary.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/value/arbitrary.rs b/tvix/eval/src/value/arbitrary.rs
index f0bdc06fd5..b00fdbd21d 100644
--- a/tvix/eval/src/value/arbitrary.rs
+++ b/tvix/eval/src/value/arbitrary.rs
@@ -27,7 +27,7 @@ impl Default for Parameters {
 }
 
 impl Arbitrary for NixAttrs {
-    type Parameters = Parameters; // <BTreeMap<NixString, Value> as Arbitrary>::Parameters;
+    type Parameters = Parameters;
     type Strategy = BoxedStrategy<Self>;
 
     fn arbitrary_with(args: Self::Parameters) -> Self::Strategy {