diff --git a/src/main.rs b/src/main.rs index 7585a87..ec649f8 100644 --- a/src/main.rs +++ b/src/main.rs @@ -168,10 +168,9 @@ impl RequestHandle { } } - /// Do the necessary actions to handle this request. If the handle is already - /// in an error state, does nothing. - /// Finally return the generated log line content. If this contains - /// the string ` error:`, the handle ended in an error state. + /// Do the necessary actions to handle this request. Returns a corresponding + /// log line as Err or Ok, depending on if the request finished with or + /// without errors. async fn handle(mut self) -> Result { // not already in error condition let result = match self.parse_request().await {