Skip to content

Commit 0448aef

Browse files
committed
Fix clippy error
1 parent db32c7f commit 0448aef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/request.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -353,7 +353,7 @@ fn parse_response<Output: DeserializeOwned>(
353353
expected_status_code, status_code
354354
);
355355

356-
match from_str::<MeilisearchError>(&body) {
356+
match from_str::<MeilisearchError>(body) {
357357
Ok(e) => Err(Error::from(e)),
358358
Err(e) => {
359359
if status_code >= 400 {

0 commit comments

Comments
 (0)