Skip to content

Commit

Permalink
Make clippy happy
Browse files Browse the repository at this point in the history
  • Loading branch information
leftmostcat committed Dec 2, 2024
1 parent 3ee2ee2 commit 0cf8540
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/types/soap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ impl<'content> ScopedReader<'content> {
// send all responses as UTF-8. We'll encounter bigger problems
// elsewhere if we run into a non-UTF-8 document, most notably that we
// currently don't enable the `encoding` feature for quick-xml.
return Ok(Self::from_bytes(content));
Ok(Self::from_bytes(content))
}

/// Gets a string representation of the contents of the current reader.
Expand Down

0 comments on commit 0cf8540

Please sign in to comment.