diff options
Diffstat (limited to 'tvix/eval')
-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(); |