diff options
author | Kirill Chibisov <wchibisovkirill@gmail.com> | 2019-07-07 16:14:04 +0300 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-07-07 13:14:04 +0000 |
commit | ed7ed473da8ad3147eab32d376a37e391ac7e9db (patch) | |
tree | 2acb68499ee48b40913e33c3c224b4aff7128e49 | |
parent | 228c641769c39bcd1460959e479b2259e7d5f773 (diff) | |
download | alacritty-ed7ed473da8ad3147eab32d376a37e391ac7e9db.tar.gz alacritty-ed7ed473da8ad3147eab32d376a37e391ac7e9db.zip |
Fix doc box drawing symbols
-rw-r--r-- | alacritty_terminal/src/renderer/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/alacritty_terminal/src/renderer/mod.rs b/alacritty_terminal/src/renderer/mod.rs index 1e75065a..cd94247f 100644 --- a/alacritty_terminal/src/renderer/mod.rs +++ b/alacritty_terminal/src/renderer/mod.rs @@ -1444,15 +1444,15 @@ impl From<io::Error> for ShaderCreationError { /// /// The strategy for filling an atlas looks roughly like this: /// -/// ```ignore +/// ```text /// (width, height) /// ┌─────┬─────┬─────┬─────┬─────┐ /// │ 10 │ │ │ │ │ <- Empty spaces; can be filled while /// │ │ │ │ │ │ glyph_height < height - row_baseline -/// ├⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┤ +/// ├─────┼─────┼─────┼─────┼─────┤ /// │ 5 │ 6 │ 7 │ 8 │ 9 │ /// │ │ │ │ │ │ -/// ├⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┼⎼⎼⎼⎼⎼┴⎼⎼⎼⎼⎼┤ <- Row height is tallest glyph in row; this is +/// ├─────┼─────┼─────┼─────┴─────┤ <- Row height is tallest glyph in row; this is /// │ 1 │ 2 │ 3 │ 4 │ used as the baseline for the following row. /// │ │ │ │ │ <- Row considered full when next glyph doesn't /// └─────┴─────┴─────┴───────────┘ fit in the row. |