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
This commit is contained in:
parent
242af863f5
commit
1a321b51df
1 changed files with 2 additions and 2 deletions
|
@ -58,8 +58,8 @@ pub fn saturating_left(map: &DisplaySnapshot, mut point: DisplayPoint) -> Displa
|
||||||
map.clip_point(point, Bias::Left)
|
map.clip_point(point, Bias::Left)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns a column to the right of the current point, doing nothing
|
/// Returns a column to the right of the current point, wrapping
|
||||||
// if that point is at the end of the line.
|
/// to the next line if that point is at the end of line.
|
||||||
pub fn right(map: &DisplaySnapshot, mut point: DisplayPoint) -> DisplayPoint {
|
pub fn right(map: &DisplaySnapshot, mut point: DisplayPoint) -> DisplayPoint {
|
||||||
if point.column() < map.line_len(point.row()) {
|
if point.column() < map.line_len(point.row()) {
|
||||||
*point.column_mut() += 1;
|
*point.column_mut() += 1;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue