truncate: fix typo in docs: "the any" -> "any"

This commit is contained in:
Jeffrey Finkelstein
2022-01-30 22:03:13 -05:00
parent fe5b537f56
commit 371278e043
+3 -3
View File
@@ -207,7 +207,7 @@ fn file_truncate(filename: &str, create: bool, size: usize) -> std::io::Result<(
///
/// # Errors
///
/// If the any file could not be opened, or there was a problem setting
/// If any file could not be opened, or there was a problem setting
/// the size of at least one file.
///
/// If at least one file is a named pipe (also known as a fifo).
@@ -269,7 +269,7 @@ fn truncate_reference_and_size(
///
/// # Errors
///
/// If the any file could not be opened, or there was a problem setting
/// If any file could not be opened, or there was a problem setting
/// the size of at least one file.
///
/// If at least one file is a named pipe (also known as a fifo).
@@ -319,7 +319,7 @@ fn truncate_reference_file_only(
///
/// # Errors
///
/// If the any file could not be opened, or there was a problem setting
/// If any file could not be opened, or there was a problem setting
/// the size of at least one file.
///
/// If at least one file is a named pipe (also known as a fifo).