From 3ad478044b80de5196394e1e422b250174eb6644 Mon Sep 17 00:00:00 2001 From: Justin Su Date: Sat, 20 Jul 2024 23:04:24 -0400 Subject: [PATCH] Fix some words --- src/terminal/Selection.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/terminal/Selection.zig b/src/terminal/Selection.zig index d1bd4accb..e4edca0f6 100644 --- a/src/terminal/Selection.zig +++ b/src/terminal/Selection.zig @@ -353,9 +353,9 @@ pub fn adjust( s: *const Screen, adjustment: Adjustment, ) void { - // Note that we always adjusts "end" because end always represents + // Note that we always adjust "end" because end always represents // the last point of the selection by mouse, not necessarilly the - // top/bottom visually. So this results in the right behavior + // top/bottom visually. So this results in the correct behavior // whether the user drags up or down. const end_pin = self.endPtr(); switch (adjustment) {