Skip to content

Commit

Permalink
doc typo error
Browse files Browse the repository at this point in the history
  • Loading branch information
LorenzoLeonardo committed Feb 9, 2024
1 parent d3fb38f commit df0e70a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/collector.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,11 +118,11 @@ fn send_transfer_info(info: &FileInfo) {

/// This is an extended trait for the curl::easy::Handler trait.
pub trait ExtendedHandler: Handler {
// Return the response body if the Collector if available.
// Return the response body if the Collector is available.
fn get_response_body(&self) -> Option<Vec<u8>> {
None
}
// Return the response body if the Collector if available with complete headers.
// Return the response body if the Collector is available with complete headers.
fn get_response_body_and_headers(&self) -> (Option<Vec<u8>>, Option<HeaderMap>) {
(None, None)
}
Expand Down

0 comments on commit df0e70a

Please sign in to comment.