diff options
| author | Robin <mewmew@users.noreply.github.com> | 2025-07-09 14:02:50 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-07-09 12:02:50 +0000 |
| commit | 4534167656f34ea2a459fcc526ba41c6a89a5314 (patch) | |
| tree | 49f295da7c51d50c4fd5584d8fae803a26206775 /crates/typst-library | |
| parent | 9ad1879e9d0978d828790fdf7978ba4aff240a71 (diff) | |
Use "displayed" instead of "repeated" to avoid ambiguity in numbering docs (#6565)
Diffstat (limited to 'crates/typst-library')
| -rw-r--r-- | crates/typst-library/src/model/numbering.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/crates/typst-library/src/model/numbering.rs b/crates/typst-library/src/model/numbering.rs index 236ced36..449dfdb3 100644 --- a/crates/typst-library/src/model/numbering.rs +++ b/crates/typst-library/src/model/numbering.rs @@ -18,7 +18,7 @@ use crate::foundations::{cast, func, Context, Func, Str, Value}; /// /// A numbering pattern consists of counting symbols, for which the actual /// number is substituted, their prefixes, and one suffix. The prefixes and the -/// suffix are repeated as-is. +/// suffix are displayed as-is. /// /// # Example /// ```example @@ -66,10 +66,10 @@ pub fn numbering( /// items, the number is represented using repeated symbols. /// /// **Suffixes** are all characters after the last counting symbol. They are - /// repeated as-is at the end of any rendered number. + /// displayed as-is at the end of any rendered number. /// /// **Prefixes** are all characters that are neither counting symbols nor - /// suffixes. They are repeated as-is at in front of their rendered + /// suffixes. They are displayed as-is at in front of their rendered /// equivalent of their counting symbol. /// /// This parameter can also be an arbitrary function that gets each number |
