Skip to content

Commit

Permalink
Fix unbalanced backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Nov 24, 2024
1 parent dd81702 commit fe59dbd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions skrifa/src/color/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,15 +121,15 @@ pub struct ColorStop {
// re-applying the deltas at least once, after which we would pass the scaled
// stops to client side and have the client sort the collected items once
// again. If we do want to pre-ort them, and still use use an
// `Iterator<Item=ColorStop>`` instead as the `color_stops` field, then we would
// `Iterator<Item=ColorStop>` instead as the `color_stops` field, then we would
// need a Fontations-side allocations to sort, and an extra allocation on the
// client side to `.collect()` from the provided iterator before passing it to
// drawing API.
//
/// A fill type of a COLRv1 glyph (solid fill or various gradient types).
///
/// The client receives the information about the fill type in the
/// [`fill``](ColorPainter::fill) callback of the [`ColorPainter`] trait.
/// [`fill`](ColorPainter::fill) callback of the [`ColorPainter`] trait.
#[derive(Debug, PartialEq)]
pub enum Brush<'a> {
/// A solid fill with the color specified by `palette_index`. The respective
Expand Down
2 changes: 1 addition & 1 deletion skrifa/src/outline/autohint/metrics/widths.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ pub(super) fn compute_widths(
}
}
}
// FreeTypes `af_sort_and_quantize_widths()`` has the side effect
// FreeTypes `af_sort_and_quantize_widths()` has the side effect
// of always updating the width count to 1 when we don't find
// any...
// See <https://gitlab.freedesktop.org/freetype/freetype/-/blob/57617782464411201ce7bbc93b086c1b4d7d84a5/src/autofit/afhints.c#L121>
Expand Down

0 comments on commit fe59dbd

Please sign in to comment.