From 4f0cfb0b732c4f2e8e52d5d695240a3efa1232e9 Mon Sep 17 00:00:00 2001 From: Henrik Lievonen Date: Sun, 12 Nov 2023 18:41:10 +0200 Subject: [PATCH] chore: Run formatting --- src/font_face.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/font_face.rs b/src/font_face.rs index 8732b46..9d2c3d5 100644 --- a/src/font_face.rs +++ b/src/font_face.rs @@ -59,11 +59,11 @@ impl<'a> FontFace<'a> { } /// Preprocesses the face and attaches data that will be needed by the subsetter. - /// + /// /// Future subsetting operations can use the precomputed data to speed up the subsetting operation. The /// preprocessing operation may take longer than the time it takes to produce a subset from the source font. Thus /// the main performance gains are made when a preprocessed face is reused for multiple subsetting operations. - /// + /// /// # Example /// ``` /// # use hb_subset::*; @@ -536,7 +536,7 @@ impl<'a> Drop for FontFace<'a> { } /// Font face that has been preprocessed for subsetting. -/// +/// /// See [FontFace::preprocess_for_subsetting()]. #[repr(transparent)] pub struct PreprocessedFontFace<'a>(*mut sys::hb_face_t, PhantomData>);