diff options
author | Edoardo La Greca | 2025-08-05 15:29:13 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-05 15:29:13 +0200 |
commit | ea8f822d198780baa2d00b4ced5dde9b1540b997 (patch) | |
tree | 874f69e04f49398eb14885140c3776096cb4c91d /src | |
parent | 10d9b3c1dcce9918222b85074c8d4bda07c934f9 (diff) |
fold doc comment for ProtocolTranslator
Diffstat (limited to 'src')
-rw-r--r-- | src/main/kotlin/ProtocolTranslator.kt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main/kotlin/ProtocolTranslator.kt b/src/main/kotlin/ProtocolTranslator.kt index 3dd5d70..3838b9a 100644 --- a/src/main/kotlin/ProtocolTranslator.kt +++ b/src/main/kotlin/ProtocolTranslator.kt @@ -4,9 +4,9 @@ TODO: */ /** - * The [ProtocolTranslator] interface provides methods that coincide 1:1 with each request type in the 9P protocol. Every - * method that can fail, that is, every request that can receive a response with `Rerror` type instead of the same type - * as itself, returns a non-null `String` that contains the error message received in the response. + * The [ProtocolTranslator] interface provides methods that coincide 1:1 with each request type in the 9P protocol. + * Every method that can fail, that is, every request that can receive a response with `Rerror` type instead of the same + * type as itself, returns a non-null `String` that contains the error message received in the response. * * Tags are supposed to be managed internally by the class that provides the implementation. * |