Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix various typos #703

Merged
merged 1 commit into from
Feb 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/gui/styles/types/color_remote.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! Remote implemention of [`serde::Deserialize`] and [`serde::Serialize`] for [`iced::Color`].
//! Remote implementation of [`serde::Deserialize`] and [`serde::Serialize`] for [`iced::Color`].
//!
//! This implementation deserializes hexadecimal RGB(A) as string to float RGB(A) and back.
//! NOTE: The alpha channel is optional and defaults to #ff or 1.0.
Expand Down Expand Up @@ -39,7 +39,7 @@ where
})?
// Iterating over bytes is safe because hex is ASCII.
// If the hex is not ASCII or invalid hex, then the iterator will short circuit and fail on `from_str_radix`
// TODO: This can be cleaned up when `iter_array_chunks` is stablized (https://github.com/rust-lang/rust/issues/100450)
// TODO: This can be cleaned up when `iter_array_chunks` is stabilized (https://github.com/rust-lang/rust/issues/100450)
.bytes()
.step_by(2) // Step by every first hex char of the two char sequence
.zip(hex.bytes().skip(2).step_by(2)) // Step by every second hex char
Expand Down
2 changes: 1 addition & 1 deletion src/secondary_threads/parse_packets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ fn from_null(packet: &[u8]) -> Result<LaxPacketHeaders, LaxHeaderSliceError> {
let h = &packet[..4];
let b = [h[0], h[1], h[2], h[3]];
// check both big endian and little endian representations
// as some OS'es use native endianess and others use big endian
// as some OS'es use native endianness and others use big endian
matches(u32::from_le_bytes(b)) || matches(u32::from_be_bytes(b))
};

Expand Down