diff options
Diffstat (limited to 'src/nvim/undo.c')
| -rw-r--r-- | src/nvim/undo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/undo.c b/src/nvim/undo.c index 31a50c0b98..99ea5d238c 100644 --- a/src/nvim/undo.c +++ b/src/nvim/undo.c @@ -2981,7 +2981,7 @@ void u_clearall(buf_T *buf) buf->b_u_line_lnum = 0; } -/// save the line "lnum" for the "U" command +/// Save the line "lnum" for the "U" command. void u_saveline(buf_T *buf, linenr_T lnum) { if (lnum == buf->b_u_line_lnum) { // line is already saved |