Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
With the recent release of Rust 1.75 there were some new clippy rules enabled. There was one minor usage issue highlighted in the new release. While we pin the rust version in CI when building and running clippy locally with the latest version this would trigger a failure. This commit fixes the one issue highlighted by clippy on Rust 1.75 which replaces `Vec<T>.get(0)` with `Vec<T>.first()`.
- Loading branch information