Added explicit type to a variable to avoid a rust-analyzer bug.

This commit is contained in:
Filipe Rodrigues 2025-05-31 07:33:51 +01:00
parent 55657258d8
commit b7a662257c
Signed by: zenithsiz
SSH Key Fingerprint: SHA256:Mb5ppb3Sh7IarBO/sBTXLHbYEOz37hJAlslLQPPAPaU

View File

@ -27,7 +27,7 @@ impl Title {
where
S: Into<String>,
{
let title = title.into();
let title: String = title.into();
// If no title exists, add the current one
let mut stack = TITLE_STACK.borrow_mut();