about summary refs log tree commit diff
path: root/tvix/eval/src
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2024-03-15T21·22+0200
committerclbot <clbot@tvl.fyi>2024-03-15T23·16+0000
commit56dc4f735b58e38598a520451d4c95979745b9ad (patch)
tree28fa029e7080ab14e99e998becdcd10754d08bbc /tvix/eval/src
parentd3534ee051abad5117e9578854b6cd13a14d940d (diff)
docs(tvix): fix some docstrings r/7700
Change-Id: Ife599387d0472cd746b992bd6755a2fb6a0e0dc4
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11158
Autosubmit: flokli <flokli@flokli.de>
Reviewed-by: Connor Brewster <cbrewster@hey.com>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval/src')
-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 6589c0dc5c..1c38bc68de 100644
--- a/tvix/eval/src/io.rs
+++ b/tvix/eval/src/io.rs
@@ -48,7 +48,7 @@ pub trait EvalIO {
     /// * `builtins.pathExists :: path -> bool`
     fn path_exists(&self, path: &Path) -> io::Result<bool>;
 
-    /// Read the file at the specified path to a Vec<u8>.
+    /// Read the file at the specified path to a `Vec<u8>`.
     ///
     /// This is used for the following language evaluation cases:
     ///