libos: Clarify requirements for File::write

This commit is contained in:
apio 2024-03-29 14:25:14 +01:00
parent 59713279a0
commit d70effd1db
Signed by: apio
GPG Key ID: B8A7D06E42258954

View File

@ -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<void> Whether the operation succeeded.
*/
Result<void> write(StringView str);