Skip to content

Commit

Permalink
Fix spelling (#230)
Browse files Browse the repository at this point in the history
  • Loading branch information
jayvdb authored Jan 15, 2024
1 parent 5d5bdb8 commit 6dbec44
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@
//! * Looking up glyph advances and origins.
//!
//! * Rasterizing glyphs using the native rasterizer, optionally using hinting. (Custom
//! rasterizers, such as Pathfinder, can be used in conjuction with the outline API.)
//! rasterizers, such as Pathfinder, can be used in conjunction with the outline API.)
//!
//! * Looking up all fonts on the system.
//!
Expand Down
2 changes: 1 addition & 1 deletion src/loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ pub trait Loader: Clone + Sized {

/// Returns true if and only if the font loader can perform hinting in the requested way.
///
/// Some APIs support only rasterizing glyphs with hinting, not retriving hinted outlines. If
/// Some APIs support only rasterizing glyphs with hinting, not retrieving hinted outlines. If
/// `for_rasterization` is false, this function returns true if and only if the loader supports
/// retrieval of hinted *outlines*. If `for_rasterization` is true, this function returns true
/// if and only if the loader supports *rasterizing* hinted glyphs.
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/core_text.rs
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ impl Font {

/// Returns true if and only if the font loader can perform hinting in the requested way.
///
/// Some APIs support only rasterizing glyphs with hinting, not retriving hinted outlines. If
/// Some APIs support only rasterizing glyphs with hinting, not retrieving hinted outlines. If
/// `for_rasterization` is false, this function returns true if and only if the loader supports
/// retrieval of hinted *outlines*. If `for_rasterization` is true, this function returns true
/// if and only if the loader supports *rasterizing* hinted glyphs.
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/directwrite.rs
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,7 @@ impl Font {

/// Returns true if and only if the font loader can perform hinting in the requested way.
///
/// Some APIs support only rasterizing glyphs with hinting, not retriving hinted outlines. If
/// Some APIs support only rasterizing glyphs with hinting, not retrieving hinted outlines. If
/// `for_rasterization` is false, this function returns true if and only if the loader supports
/// retrieval of hinted *outlines*. If `for_rasterization` is true, this function returns true
/// if and only if the loader supports *rasterizing* hinted glyphs.
Expand Down
2 changes: 1 addition & 1 deletion src/loaders/freetype.rs
Original file line number Diff line number Diff line change
Expand Up @@ -682,7 +682,7 @@ impl Font {

/// Returns true if and only if the font loader can perform hinting in the requested way.
///
/// Some APIs support only rasterizing glyphs with hinting, not retriving hinted outlines. If
/// Some APIs support only rasterizing glyphs with hinting, not retrieving hinted outlines. If
/// `for_rasterization` is false, this function returns true if and only if the loader supports
/// retrieval of hinted *outlines*. If `for_rasterization` is true, this function returns true
/// if and only if the loader supports *rasterizing* hinted glyphs.
Expand Down

0 comments on commit 6dbec44

Please sign in to comment.