summaryrefslogtreecommitdiffstats
path: root/zellij-server/src/panes
diff options
context:
space:
mode:
authorhar7an <99636919+har7an@users.noreply.github.com>2022-10-20 16:06:04 +0000
committerGitHub <noreply@github.com>2022-10-20 16:06:04 +0000
commit27c875b5684a4166b6e86063302daf4c97408948 (patch)
treede3a5491e41ac1bf869881cb9e4d1dcb8f9dc0d3 /zellij-server/src/panes
parentd8fcaf8e05fd3d59112157e5802ecded4120c0b1 (diff)
server/panes/grid: Fix whitespace error
Diffstat (limited to 'zellij-server/src/panes')
-rw-r--r--zellij-server/src/panes/grid.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/zellij-server/src/panes/grid.rs b/zellij-server/src/panes/grid.rs
index 88edb1efc..67a882fb4 100644
--- a/zellij-server/src/panes/grid.rs
+++ b/zellij-server/src/panes/grid.rs
@@ -1195,7 +1195,7 @@ impl Grid {
let character_width = terminal_character.width;
// Drop zero-width Unicode/UTF-8 codepoints, like for example Variation Selectors.
// This breaks unicode grapheme segmentation, and is the reason why some characters
- // aren't displayed correctly. Refer to this issue for more information:
+ // aren't displayed correctly. Refer to this issue for more information:
// https://github.com/zellij-org/zellij/issues/1538
if character_width == 0 {
return;