mirror of
https://github.com/samsonjs/agate.git
synced 2026-04-06 11:05:48 +00:00
fix doc comment
This commit is contained in:
parent
f0789921e0
commit
0411a8278f
1 changed files with 3 additions and 4 deletions
|
|
@ -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<String, String> {
|
||||
// not already in error condition
|
||||
let result = match self.parse_request().await {
|
||||
|
|
|
|||
Loading…
Reference in a new issue