Fix spelling in several code comments (#1860)

Signed-off-by: renshuncui <renshun@111.com>
This commit is contained in:
renshuncui
2024-07-25 16:17:32 +09:00
committed by GitHub
parent e1df23c28e
commit 9712f9b037
4 changed files with 4 additions and 4 deletions

View File

@@ -1083,7 +1083,7 @@ fn selective_color_node(
.into_iter()
.fold((0., 0., 0.), |acc, (color_parameter_group, (c, m, y, k))| {
// Skip this color parameter group...
// ...if it's unchanged from the default of zero offset on all CMYK paramters, or...
// ...if it's unchanged from the default of zero offset on all CMYK parameters, or...
// ...if this pixel's color isn't in the range affected by this color parameter group
if (c < f32::EPSILON && m < f32::EPSILON && y < f32::EPSILON && k < f32::EPSILON) || (!pixel_color_range(color_parameter_group)) {
return acc;