diff options
| author | Ivan Molodetskikh <yalterz@gmail.com> | 2025-10-02 09:46:48 +0300 |
|---|---|---|
| committer | Ivan Molodetskikh <yalterz@gmail.com> | 2025-10-02 10:02:36 +0300 |
| commit | 640e2b08a86567f670d65fbb5fce64651061d3f9 (patch) | |
| tree | 8baa4c8ca7432a21f81d10f32a37d0a3b1ec66de | |
| parent | 5c91e3191dff08177740d642344d9eb67122139d (diff) | |
| download | niri-640e2b08a86567f670d65fbb5fce64651061d3f9.tar.gz niri-640e2b08a86567f670d65fbb5fce64651061d3f9.tar.bz2 niri-640e2b08a86567f670d65fbb5fce64651061d3f9.zip | |
config: Rename tracy span parse => decode config file
| -rw-r--r-- | niri-config/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
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<S>], ctx: &mut knuffel::decode::Context<S>, ) -> Result<Self, DecodeError<S>> { - let _span = tracy_client::span!("parse config file"); + let _span = tracy_client::span!("decode config file"); let config = ctx.get::<Rc<RefCell<Config>>>().unwrap().clone(); let includes = ctx.get::<Rc<RefCell<Includes>>>().unwrap().clone(); |
