diff options
author | Aspen Smith <root@gws.fyi> | 2024-01-05T16·10-0500 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-01-05T16·30+0000 |
commit | e66dcba19549a0a108f93b17feafb8084a1e67a1 (patch) | |
tree | 1a4eac73dc8f46f903072837126903cec17b5d3a /tvix/eval/src/lib.rs | |
parent | 5154406ca8030f4fed944be4b00a8cd4c18dc2d8 (diff) |
fix(tvix/eval): Update eval benches for new API r/7344
cl/10475 updated the API of tvix_eval::Evaluation, but didn't update this benchmark to use that new API. Also, fixes the docstring to no longer specify that there is a "given snippet". Change-Id: Ibb8285731849dbeec814e2585bbaa36f22368afe Reviewed-on: https://cl.tvl.fyi/c/depot/+/10542 Autosubmit: aspen <root@gws.fyi> Tested-by: BuildkiteCI Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r-- | tvix/eval/src/lib.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs index ddc281323454..f852b1a3243d 100644 --- a/tvix/eval/src/lib.rs +++ b/tvix/eval/src/lib.rs @@ -154,8 +154,7 @@ impl<'co, 'ro> Default for Evaluation<'co, 'ro> { impl<'co, 'ro> Evaluation<'co, 'ro> { #[cfg(feature = "impure")] - /// Initialise an `Evaluation` for the given snippet, with all - /// impure features turned on by default. + /// Initialise an `Evaluation`, with all impure features turned on by default. pub fn new_impure() -> Self { let mut eval = Self { enable_import: true, |