summaryrefslogtreecommitdiff
path: root/src/diag.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/diag.rs')
-rw-r--r--src/diag.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/diag.rs b/src/diag.rs
index 99ef1291..58eebf8b 100644
--- a/src/diag.rs
+++ b/src/diag.rs
@@ -100,7 +100,7 @@ pub enum Tracepoint {
/// A function call.
Call(Option<EcoString>),
/// A show rule application.
- Apply(EcoString),
+ Show(EcoString),
/// A module import.
Import,
}
@@ -114,7 +114,7 @@ impl Display for Tracepoint {
Tracepoint::Call(None) => {
write!(f, "error occured in this function call")
}
- Tracepoint::Apply(name) => {
+ Tracepoint::Show(name) => {
write!(f, "error occured while applying show rule to this {name}")
}
Tracepoint::Import => {