diff options
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 |