aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/main.c
diff options
context:
space:
mode:
authordundargoc <33953936+dundargoc@users.noreply.github.com>2023-02-20 08:12:59 +0100
committerGitHub <noreply@github.com>2023-02-20 15:12:59 +0800
commitb62c0c8d9c22ae7fc9ee200733f8312efa6dbced (patch)
tree8d7cef5b70f6a4d1023242a5b37b4ece50837bc6 /src/nvim/main.c
parent8784f064f15e5ae0b6bc85c2972ec16c64656e2b (diff)
downloadrneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.tar.gz
rneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.tar.bz2
rneovim-b62c0c8d9c22ae7fc9ee200733f8312efa6dbced.zip
docs: fix typos (#21961)
Co-authored-by: Ben Morgan <cassava@iexu.de>
Diffstat (limited to 'src/nvim/main.c')
-rw-r--r--src/nvim/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/main.c b/src/nvim/main.c
index f2aa14e04c..0ecb5f742d 100644
--- a/src/nvim/main.c
+++ b/src/nvim/main.c
@@ -182,7 +182,7 @@ void early_init(mparm_T *paramp)
#ifdef MSWIN
OSVERSIONINFO ovi;
ovi.dwOSVersionInfoSize = sizeof(ovi);
- // Disable warning about GetVersionExA being deprecated. There doesn't seem to be a conventient
+ // Disable warning about GetVersionExA being deprecated. There doesn't seem to be a convenient
// replacement that doesn't add a ton of extra code as of writing this.
# pragma warning(suppress : 4996)
GetVersionEx(&ovi);