From 1a321b51df61bc3d6d366e8bc6f65d9fd08baf82 Mon Sep 17 00:00:00 2001 From: fantacell Date: Thu, 12 Jun 2025 07:39:17 +0200 Subject: [PATCH] Rewrite documentation comment for right movement (#32547) I don't think the documentation comment is saying the right thing. This version is more similar to the comment of the left movement function. Release Notes: - N/A --- crates/editor/src/movement.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/editor/src/movement.rs b/crates/editor/src/movement.rs index eba1f26dcc..75645bbaa2 100644 --- a/crates/editor/src/movement.rs +++ b/crates/editor/src/movement.rs @@ -58,8 +58,8 @@ pub fn saturating_left(map: &DisplaySnapshot, mut point: DisplayPoint) -> Displa map.clip_point(point, Bias::Left) } -/// Returns a column to the right of the current point, doing nothing -// if that point is at the end of the line. +/// Returns a column to the right of the current point, wrapping +/// to the next line if that point is at the end of line. pub fn right(map: &DisplaySnapshot, mut point: DisplayPoint) -> DisplayPoint { if point.column() < map.line_len(point.row()) { *point.column_mut() += 1;