diff options
author | Vincent Ambo <mail@tazj.in> | 2022-12-21T13·09+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2022-12-21T23·29+0000 |
commit | 22ed59fabd8714279b4538783ca2fb23b28b15a0 (patch) | |
tree | de2ce08af10ff82998f73420d0c9ef47cb4a49ec /tvix/eval/src/lib.rs | |
parent | 908cebf35c4e9be1fa91cb558389b7e80b6d0b77 (diff) |
chore(tvix/eval): fix a broken comment r/5469
Change-Id: I0a6edb51685f94d4712089ae805170da3fb7faae Reviewed-on: https://cl.tvl.fyi/c/depot/+/7609 Reviewed-by: grfn <grfn@gws.fyi> Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src/lib.rs')
-rw-r--r-- | tvix/eval/src/lib.rs | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs index 17dff9420301..d8620a145e93 100644 --- a/tvix/eval/src/lib.rs +++ b/tvix/eval/src/lib.rs @@ -131,7 +131,6 @@ pub struct EvaluationResult { impl<'code, 'co, 'ro> Evaluation<'code, 'co, 'ro> { /// Initialise an `Evaluation` for the given Nix source code snippet, and /// an optional code location. - /// reporting the location of errors in the code. pub fn new(code: &'code str, location: Option<PathBuf>) -> Self { let source_map = SourceCode::new(); |