From d56ef5ac6af573564adbafe0f17423648ae01620 Mon Sep 17 00:00:00 2001 From: yakiimoninja <80072600+yakiimoninja@users.noreply.github.com> Date: Mon, 28 Oct 2024 17:14:15 +0000 Subject: [PATCH] clarified std::fs truncate doc Co-authored-by: nora <48135649+Noratrieb@users.noreply.github.com> --- std/src/fs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/std/src/fs.rs b/std/src/fs.rs index 5229925ceedc1..3079c8b1d905a 100644 --- a/std/src/fs.rs +++ b/std/src/fs.rs @@ -1197,7 +1197,7 @@ impl OpenOptions { /// Sets the option for truncating a previous file. /// - /// If a file is successfully opened with this option set as true, it will truncate + /// If a file is successfully opened with this option set to true, it will truncate /// the file to 0 length if it already exists. /// /// The file must be opened with write access for truncate to work.