diff options
Diffstat (limited to 'alacritty_terminal/src/config/scrolling.rs')
-rw-r--r-- | alacritty_terminal/src/config/scrolling.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/alacritty_terminal/src/config/scrolling.rs b/alacritty_terminal/src/config/scrolling.rs index f4e55787..7ff306a9 100644 --- a/alacritty_terminal/src/config/scrolling.rs +++ b/alacritty_terminal/src/config/scrolling.rs @@ -49,8 +49,7 @@ impl<'de> Deserialize<'de> for ScrollingHistory { if lines > MAX_SCROLLBACK_LINES { Err(SerdeError::custom(format!( - "exceeded maximum scrolling history ({}/{})", - lines, MAX_SCROLLBACK_LINES + "exceeded maximum scrolling history ({lines}/{MAX_SCROLLBACK_LINES})" ))) } else { Ok(Self(lines)) |