From d70effd1db97aada990e21893df724e0af7cebc8 Mon Sep 17 00:00:00 2001 From: apio Date: Fri, 29 Mar 2024 14:25:14 +0100 Subject: [PATCH] libos: Clarify requirements for File::write --- libos/include/os/File.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libos/include/os/File.h b/libos/include/os/File.h index ffef757a..112941c9 100644 --- a/libos/include/os/File.h +++ b/libos/include/os/File.h @@ -113,7 +113,7 @@ namespace os /** * @brief Write a string to this File. * - * @param str The string to write (can be not null-terminated). + * @param str The string to write (doesn't have to be null-terminated). * @return Result Whether the operation succeeded. */ Result write(StringView str);