Skip to content

Commit

Permalink
docs: changelog for #5996
Browse files Browse the repository at this point in the history
  • Loading branch information
wez committed Sep 14, 2024
1 parent 6a2e356 commit 78849cc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion config/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1645,7 +1645,7 @@ const MAX_SCROLLBACK_LINES: usize = 999_999_999;
fn validate_scrollback_lines(value: &usize) -> Result<(), String> {
if *value > MAX_SCROLLBACK_LINES {
return Err(format!(
"Illegal value {value} for scrollback_size; it must be <= {MAX_SCROLLBACK_LINES}!"
"Illegal value {value} for scrollback_lines; it must be <= {MAX_SCROLLBACK_LINES}!"
));
}
Ok(())
Expand Down
2 changes: 2 additions & 0 deletions docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ As features stabilize some brief notes about them will accumulate here.
so that the effective behavior of the defaults remains unchanged.
Thanks to @LeszekSwirski! #4924 #3502
* Improved startup performance on X11. Thanks to @blukai! #5923 #5802
* There is now an upper bound of 999,999,999 for `scrollback_lines`. Thanks to
@x3ro! #5996

#### New
* [wezterm.serde](config/lua/wezterm.serde/index.md) module for serialization
Expand Down

0 comments on commit 78849cc

Please sign in to comment.