summaryrefslogtreecommitdiff
path: root/src/model/items.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-11-19 23:12:23 +0100
committerLaurenz <laurmaedje@gmail.com>2022-11-19 23:12:23 +0100
commit565b1977aef9db70aef29a1eb8747f42a7fe4a15 (patch)
tree512587ff875c072fbcd498ff3b3f7c8d618980b4 /src/model/items.rs
parent1937d746abf19a5c1142db546912dbed0e6711fb (diff)
Rename `RawKind` to `RawFields`
Diffstat (limited to 'src/model/items.rs')
-rw-r--r--src/model/items.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/model/items.rs b/src/model/items.rs
index a2c61933..21d45b67 100644
--- a/src/model/items.rs
+++ b/src/model/items.rs
@@ -66,7 +66,7 @@ pub struct LangItems {
pub strong: fn(body: Content) -> Content,
/// Emphasized content: `_Emphasized_`.
pub emph: fn(body: Content) -> Content,
- /// A raw block with optional syntax highlighting: `` `...` ``.
+ /// Raw text with optional syntax highlighting: `` `...` ``.
pub raw: fn(text: EcoString, tag: Option<EcoString>, block: bool) -> Content,
/// A hyperlink: `https://typst.org`.
pub link: fn(url: EcoString) -> Content,