diff options
| author | +merlan #flirora <flirora@flirora.xyz> | 2025-06-25 12:58:40 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-25 16:58:40 +0000 |
| commit | d54544297beba0a762bee9bc731baab96e4d7250 (patch) | |
| tree | 78801fe0df0fe0d0daae2501c0bcfd8661bd30ba /crates/typst-library/src/model | |
| parent | f2f527c451b1b05b393af99b89c528aadb203ce6 (diff) | |
Minor fixes to doc comments (#6500)
Diffstat (limited to 'crates/typst-library/src/model')
| -rw-r--r-- | crates/typst-library/src/model/bibliography.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/typst-library/src/model/bibliography.rs b/crates/typst-library/src/model/bibliography.rs index 8056d4ab..e1a07359 100644 --- a/crates/typst-library/src/model/bibliography.rs +++ b/crates/typst-library/src/model/bibliography.rs @@ -592,7 +592,7 @@ impl Works { /// Context for generating the bibliography. struct Generator<'a> { - /// The routines that is used to evaluate mathematical material in citations. + /// The routines that are used to evaluate mathematical material in citations. routines: &'a Routines, /// The world that is used to evaluate mathematical material in citations. world: Tracked<'a, dyn World + 'a>, @@ -609,7 +609,7 @@ struct Generator<'a> { /// Details about a group of merged citations. All citations are put into groups /// of adjacent ones (e.g., `@foo @bar` will merge into a group of length two). -/// Even single citations will be put into groups of length ones. +/// Even single citations will be put into groups of length one. struct GroupInfo { /// The group's location. location: Location, |
