summaryrefslogtreecommitdiff
path: root/src/model
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-12-21 00:16:07 +0100
committerLaurenz <laurmaedje@gmail.com>2022-12-21 00:26:20 +0100
commitee732468c7487c81aa6470571077988b75d36ebb (patch)
treee0361bb75b8bbc3359b711f4009e165459d66248 /src/model
parent15cd273c82a96128a63781981a4405fcd2b1e846 (diff)
Document text category
Diffstat (limited to 'src/model')
-rw-r--r--src/model/cast.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/model/cast.rs b/src/model/cast.rs
index 5c95fe4b..1a5cae45 100644
--- a/src/model/cast.rs
+++ b/src/model/cast.rs
@@ -293,11 +293,11 @@ castable! {
castable! {
FontStyle,
- /// The default style.
+ /// The default, typically upright style.
"normal" => Self::Normal,
- /// A cursive style.
+ /// A cursive style with custom letterform.
"italic" => Self::Italic,
- /// A slanted style.
+ /// Just a slanted version of the normal style.
"oblique" => Self::Oblique,
}