summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEdoardo La Greca2025-08-09 21:17:36 +0200
committerEdoardo La Greca2025-08-09 21:17:36 +0200
commit13a4b95ca0bdd402cf9a06989cb8397e3d0bf9ed (patch)
treee5a58a7aa66628d19057a8e4e28ce711f1cfe0df
parent6c516e1e135430ed3a1f854aedc6a7af3c3d9fda (diff)
reword documentation of write
-rw-r--r--src/main/kotlin/ProtocolTranslator.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/ProtocolTranslator.kt b/src/main/kotlin/ProtocolTranslator.kt
index cee72f4..6747e98 100644
--- a/src/main/kotlin/ProtocolTranslator.kt
+++ b/src/main/kotlin/ProtocolTranslator.kt
@@ -115,8 +115,8 @@ interface ProtocolTranslator {
fun read(fid: UInt, offset: ULong, count: UInt): Array<UByte>
/**
- * Transfer data to file. Due to the negotiated maximum size of 9P messages, called `msize`, one is supposed to
- * call this method multiple times, unless the content is smaller than `msize`.
+ * Transfer data to file. Due to the negotiated maximum size of 9P messages, called `msize`, this method is supposed
+ * to be called multiple times, unless the content is smaller than `msize`.
*
* @param fid The FID to write to.
* @param offset The distance between the beginning of the file and the first written byte.