From b7a662257c6b4ac43d469c7b32c69b7fc336f59a Mon Sep 17 00:00:00 2001 From: Filipe Rodrigues Date: Sat, 31 May 2025 07:33:51 +0100 Subject: [PATCH] Added explicit type to a variable to avoid a `rust-analyzer` bug. --- dynatos-title/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynatos-title/src/lib.rs b/dynatos-title/src/lib.rs index 624d08b..085f25a 100644 --- a/dynatos-title/src/lib.rs +++ b/dynatos-title/src/lib.rs @@ -27,7 +27,7 @@ impl Title { where S: Into, { - let title = title.into(); + let title: String = title.into(); // If no title exists, add the current one let mut stack = TITLE_STACK.borrow_mut();