Skip to content

Commit

Permalink
[docs] Fixup write-fonts lib docs
Browse files Browse the repository at this point in the history
I noticed a missing word, and then rereading the paragraph I had a few
other little nits.
  • Loading branch information
cmyr committed Sep 22, 2023
1 parent f8a8ccf commit a21c97d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions write-fonts/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
//!
Expand Down

0 comments on commit a21c97d

Please sign in to comment.