conlang: More clippy

This commit is contained in:
2025-09-15 00:17:50 -04:00
parent 1fe796dda7
commit 62940b3d24
5 changed files with 8 additions and 8 deletions

View File

@@ -159,7 +159,7 @@ impl Environment {
/// Enters a nested scope, returning a [`Frame`] stack-guard.
///
/// [`Frame`] implements Deref/DerefMut for [`Environment`].
pub fn frame(&mut self, name: &'static str) -> Frame {
pub fn frame(&mut self, name: &'static str) -> Frame<'_> {
Frame::new(self, name)
}