diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2023-10-29 09:02:32 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-29 16:02:32 +0800 |
commit | 2dc9ceb99c018b15dcf0c443cad46efecccaf94e (patch) | |
tree | f1850d042c6628949b52d16e53912dd14683b298 /src/nvim/grid.h | |
parent | 0da27e9bdec14acf82731c4d5e0ad7d673697af7 (diff) | |
download | rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.tar.gz rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.tar.bz2 rneovim-2dc9ceb99c018b15dcf0c443cad46efecccaf94e.zip |
docs: small fixes (#25585)
Co-authored-by: tmummert <doczook@gmx.de>
Co-authored-by: parikshit adhikari <parikshitadhikari@gmail.com>
Diffstat (limited to 'src/nvim/grid.h')
-rw-r--r-- | src/nvim/grid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/grid.h b/src/nvim/grid.h index 8658635f3a..1b2c529a93 100644 --- a/src/nvim/grid.h +++ b/src/nvim/grid.h @@ -36,7 +36,7 @@ EXTERN colnr_T *linebuf_vcol INIT( = NULL); /// Put a ASCII character in a screen cell. /// /// If `x` is a compile time constant, schar_from_ascii(x) will also be. -/// But the specific value varies per plattform. +/// But the specific value varies per platform. #ifdef ORDER_BIG_ENDIAN # define schar_from_ascii(x) ((schar_T)((x) << 24)) #else |