Skip to content

Commit

Permalink
fix(buffer): wrap deprecation note at 100 columns
Browse files Browse the repository at this point in the history
Signed-off-by: rhysd <lin90162@yahoo.co.jp>
  • Loading branch information
rhysd committed Nov 12, 2023
1 parent 4c02683 commit 6a52360
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/buffer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ use crate::{
pub struct Cell {
#[deprecated(
since = "0.24.1",
note = "This field will be hidden at next major version. Use `Cell::symbol` method to get the value. Use `Cell::set_symbol` to update the field. Use `Cell::default` to create `Cell` instance"
note = "This field will be hidden at next major version. Use `Cell::symbol` method to get \
the value. Use `Cell::set_symbol` to update the field. Use `Cell::default` to \
create `Cell` instance"
)]
pub symbol: String,
pub fg: Color,
Expand Down

0 comments on commit 6a52360

Please sign in to comment.