From 640e2b08a86567f670d65fbb5fce64651061d3f9 Mon Sep 17 00:00:00 2001 From: Ivan Molodetskikh Date: Thu, 2 Oct 2025 09:46:48 +0300 Subject: [PATCH] config: Rename tracy span parse => decode config file --- niri-config/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/niri-config/src/lib.rs b/niri-config/src/lib.rs index 2ba2a121..81971cff 100644 --- a/niri-config/src/lib.rs +++ b/niri-config/src/lib.rs @@ -134,7 +134,7 @@ where nodes: &[knuffel::ast::SpannedNode], ctx: &mut knuffel::decode::Context, ) -> Result> { - let _span = tracy_client::span!("parse config file"); + let _span = tracy_client::span!("decode config file"); let config = ctx.get::>>().unwrap().clone(); let includes = ctx.get::>>().unwrap().clone();