diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2025-03-29 07:01:49 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-03-29 07:01:49 +0800 |
| commit | cb31663663b9be92dd9c2fbe06ccea88625b2fca (patch) | |
| tree | 812b56ede3741de74443099815e5eac4c2ff8988 /src/nvim/buffer_defs.h | |
| parent | f4ee0ab2f1a15fe3bb88122fa162620e4af74b1d (diff) | |
| download | rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.tar.gz rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.tar.bz2 rneovim-cb31663663b9be92dd9c2fbe06ccea88625b2fca.zip | |
vim-patch:9.1.1252: typos in code and docs related to 'diffopt' "inline:" (#33143)
Problem: Typos in code and docs related to 'diffopt' "inline:".
(after v9.1.1243)
Solution: Fix typos and slightly improve the docs.
(zeertzjq)
closes: vim/vim#16997
https://github.com/vim/vim/commit/5a307c361cbe9f7ac438a917b905378d87f8f2de
Diffstat (limited to 'src/nvim/buffer_defs.h')
| -rw-r--r-- | src/nvim/buffer_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h index be28e08675..f226ce9c42 100644 --- a/src/nvim/buffer_defs.h +++ b/src/nvim/buffer_defs.h @@ -777,7 +777,7 @@ struct diffblock_S { typedef struct diffline_change_S diffline_change_T; struct diffline_change_S { colnr_T dc_start[DB_COUNT]; ///< byte offset of start of range in the line - colnr_T dc_end[DB_COUNT]; ///< 1 paste byte offset of end of range in line + colnr_T dc_end[DB_COUNT]; ///< 1 past byte offset of end of range in line int dc_start_lnum_off[DB_COUNT]; ///< starting line offset int dc_end_lnum_off[DB_COUNT]; ///< end line offset }; |