diff --git a/node-graph/gcore/src/raster/adjustments.rs b/node-graph/gcore/src/raster/adjustments.rs index 4b511d3d..968bccec 100644 --- a/node-graph/gcore/src/raster/adjustments.rs +++ b/node-graph/gcore/src/raster/adjustments.rs @@ -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; diff --git a/node-graph/gcore/src/transform.rs b/node-graph/gcore/src/transform.rs index 357bf4c5..7d387362 100644 --- a/node-graph/gcore/src/transform.rs +++ b/node-graph/gcore/src/transform.rs @@ -147,7 +147,7 @@ pub struct Footprint { pub resolution: glam::UVec2, /// Quality of the render, this may be used by caching nodes to decide if the cached render is sufficient pub quality: RenderQuality, - /// When the transform is set downstream, all upsream modifications have to be ignored + /// When the transform is set downstream, all upstream modifications have to be ignored pub ignore_modifications: bool, } diff --git a/node-graph/gcore/src/vector/vector_data/attributes.rs b/node-graph/gcore/src/vector/vector_data/attributes.rs index 1746c1e5..d65bc7c8 100644 --- a/node-graph/gcore/src/vector/vector_data/attributes.rs +++ b/node-graph/gcore/src/vector/vector_data/attributes.rs @@ -419,7 +419,7 @@ impl super::VectorData { .filter_map(to_bezier) } - /// Construct a [`bezier_rs::Bezier`] curve from an iterator of segments with (handles, start point, end point). Returns None if any ids are invalid or if the semgents are not continuous. + /// Construct a [`bezier_rs::Bezier`] curve from an iterator of segments with (handles, start point, end point). Returns None if any ids are invalid or if the segments are not continuous. fn subpath_from_segments(&self, segments: impl Iterator) -> Option> { let mut first_point = None; let mut groups = Vec::new(); diff --git a/node-graph/gcore/src/vector/vector_nodes.rs b/node-graph/gcore/src/vector/vector_nodes.rs index 8dab3524..be74bbec 100644 --- a/node-graph/gcore/src/vector/vector_nodes.rs +++ b/node-graph/gcore/src/vector/vector_nodes.rs @@ -433,7 +433,7 @@ async fn morph(footprint: Footprint, source: impl Node