summaryrefslogtreecommitdiff
path: root/src/main/kotlin/ProtocolTranslator.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/ProtocolTranslator.kt')
-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.