From a21c97d62e719ea1282ef44076aca57d33d80446 Mon Sep 17 00:00:00 2001 From: Colin Rofls Date: Fri, 22 Sep 2023 15:42:11 -0400 Subject: [PATCH] [docs] Fixup write-fonts lib docs I noticed a missing word, and then rereading the paragraph I had a few other little nits. --- write-fonts/src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/write-fonts/src/lib.rs b/write-fonts/src/lib.rs index f6b707ef3..b5f4757bc 100644 --- a/write-fonts/src/lib.rs +++ b/write-fonts/src/lib.rs @@ -49,13 +49,13 @@ //! //! ## Writing subtables //! -//! A font table commonly contains some set of subtables, which are referenced +//! A font table commonly contains some set of subtables which are referenced //! in the font binary as offsets relative to the position (within the file) of //! the parent table; and these subtables can themselves contain subtables, and -//! so on. We refer to the entire structure of tables the 'table graph'. +//! so on. We refer to the entire structure of tables as the 'table graph'. //! A consequence of this structure is that compiling //! a table is not as simple as just sequentially writing out the bytes of each -//! field; it also involves determining an ordering for the subtables, determining +//! field; it also involves computing an ordering for the subtables, determining //! their position in the final binary, and correctly writing that position in //! the appropriate location in any tables that reference that subtable. //!