docs(tvix): fix some docstrings

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
This commit is contained in:
Florian Klink 2024-03-15 23:22:11 +02:00 committed by clbot
parent d3534ee051
commit 56dc4f735b
4 changed files with 5 additions and 5 deletions

View file

@ -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:
///