diff options
-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. * |