diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-05-05 22:50:23 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-05 22:50:23 +0000 |
commit | 81ce93574f62d4b117fdd79af65391f30316a457 (patch) | |
tree | 951a0578860c6028e2dfff0ca83879001c6b2385 /alacritty_terminal/src/term/cell.rs | |
parent | 04f0bcaf54ed373128ca0f84ee8fcdd8e52bce23 (diff) | |
download | r-alacritty-81ce93574f62d4b117fdd79af65391f30316a457.tar.gz r-alacritty-81ce93574f62d4b117fdd79af65391f30316a457.tar.bz2 r-alacritty-81ce93574f62d4b117fdd79af65391f30316a457.zip |
Extend style guideline documentation
Diffstat (limited to 'alacritty_terminal/src/term/cell.rs')
-rw-r--r-- | alacritty_terminal/src/term/cell.rs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/alacritty_terminal/src/term/cell.rs b/alacritty_terminal/src/term/cell.rs index d57f57cc..c23b3599 100644 --- a/alacritty_terminal/src/term/cell.rs +++ b/alacritty_terminal/src/term/cell.rs @@ -19,7 +19,7 @@ use crate::ansi::{Color, NamedColor}; use crate::grid::{self, GridCell}; use crate::index::Column; -// Maximum number of zerowidth characters which will be stored per cell. +/// Maximum number of zerowidth characters which will be stored per cell. pub const MAX_ZEROWIDTH_CHARS: usize = 5; bitflags! { @@ -92,9 +92,9 @@ impl GridCell for Cell { } } -/// Get the length of occupied cells in a line +/// Get the length of occupied cells in a line. pub trait LineLength { - /// Calculate the occupied line length + /// Calculate the occupied line length. fn line_length(&self) -> Column; } @@ -139,7 +139,7 @@ impl Cell { #[inline] pub fn reset(&mut self, template: &Cell) { - // memcpy template to self + // memcpy template to self. *self = Cell { c: template.c, bg: template.bg, ..Cell::default() }; } |