summaryrefslogtreecommitdiff
path: root/crates
diff options
context:
space:
mode:
Diffstat (limited to 'crates')
-rw-r--r--crates/typst/src/foundations/ty.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/crates/typst/src/foundations/ty.rs b/crates/typst/src/foundations/ty.rs
index 4c2098f3..4b9f19a9 100644
--- a/crates/typst/src/foundations/ty.rs
+++ b/crates/typst/src/foundations/ty.rs
@@ -94,10 +94,10 @@ impl Type {
.constructor
.as_ref()
.map(|lazy| Func::from(*lazy))
- .ok_or_else(|| eco_format!("type self does not have a constructor"))
+ .ok_or_else(|| eco_format!("type {self} does not have a constructor"))
}
- /// The type's associated scope of sub-definition.
+ /// The type's associated scope that holds sub-definitions.
pub fn scope(&self) -> &'static Scope {
&(self.0).0.scope
}
@@ -106,13 +106,13 @@ impl Type {
pub fn field(&self, field: &str) -> StrResult<&'static Value> {
self.scope()
.get(field)
- .ok_or_else(|| eco_format!("type self does not contain field `{}`", field))
+ .ok_or_else(|| eco_format!("type {self} does not contain field `{field}`"))
}
}
// Type compatibility.
impl Type {
- /// The type's backwards-compatible name.
+ /// The type's backward-compatible name.
pub fn compat_name(&self) -> &str {
self.long_name()
}