Skip to content

Commit

Permalink
Fix clippy error
Browse files Browse the repository at this point in the history
  • Loading branch information
fredizzimo committed Apr 4, 2024
1 parent b732968 commit c00d297
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bridge/api_info.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ impl ApiVersion {
log::trace!("expect nvim version: {major}.{minor}");
let ret = actual_major > major || (actual_major == major && actual_minor >= minor);
log::trace!("has desired nvim version: {ret}");
return ret;
ret
}
}

Expand Down

0 comments on commit c00d297

Please sign in to comment.