diff --git a/src/lib.rs b/src/lib.rs index c3fe58d..3032248 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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. //! diff --git a/src/loader.rs b/src/loader.rs index e168944..fc94617 100644 --- a/src/loader.rs +++ b/src/loader.rs @@ -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. diff --git a/src/loaders/core_text.rs b/src/loaders/core_text.rs index 25b4d98..8685321 100644 --- a/src/loaders/core_text.rs +++ b/src/loaders/core_text.rs @@ -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. diff --git a/src/loaders/directwrite.rs b/src/loaders/directwrite.rs index 20ed4f9..b39b7d9 100644 --- a/src/loaders/directwrite.rs +++ b/src/loaders/directwrite.rs @@ -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. diff --git a/src/loaders/freetype.rs b/src/loaders/freetype.rs index f05ed3f..538ec28 100644 --- a/src/loaders/freetype.rs +++ b/src/loaders/freetype.rs @@ -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.