about summary refs log tree commit diff
path: root/tvix/eval/src/lib.rs
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-12-21T13·09+0300
committerclbot <clbot@tvl.fyi>2022-12-21T23·29+0000
commit22ed59fabd8714279b4538783ca2fb23b28b15a0 (patch)
treede2ce08af10ff82998f73420d0c9ef47cb4a49ec /tvix/eval/src/lib.rs
parent908cebf35c4e9be1fa91cb558389b7e80b6d0b77 (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 '')
-rw-r--r--tvix/eval/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tvix/eval/src/lib.rs b/tvix/eval/src/lib.rs
index 17dff94203..d8620a145e 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();