about summary refs log tree commit diff
path: root/tvix/eval/src/io.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/io.rs')
-rw-r--r--tvix/eval/src/io.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/eval/src/io.rs b/tvix/eval/src/io.rs
index 1baa24439e..931a0f45cc 100644
--- a/tvix/eval/src/io.rs
+++ b/tvix/eval/src/io.rs
@@ -73,7 +73,7 @@ impl EvalIO for StdIO {
     }
 
     fn read_to_string(&self, path: &Path) -> Result<String, io::Error> {
-        std::fs::read_to_string(&path)
+        std::fs::read_to_string(path)
     }
 
     fn read_dir(&self, path: &Path) -> Result<Vec<(bytes::Bytes, FileType)>, io::Error> {