From 3222f0ad0079ce4bd4e45886a00e4fe4685fb5dd Mon Sep 17 00:00:00 2001 From: zeertzjq Date: Mon, 16 Oct 2023 16:36:25 +0800 Subject: vim-patch:dbf749bd5aae (#25665) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit runtime: Fix more typos (vim/vim#13354) * Fix more typos * Fix typos in ignored runtime/ directory https://github.com/vim/vim/commit/dbf749bd5aaef6ea2d28bce081349785d174d96a Co-authored-by: Viktor Szépe --- src/nvim/option.c | 2 +- src/nvim/os/fs.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/option.c b/src/nvim/option.c index 6a3079e0a6..4b50f27ef2 100644 --- a/src/nvim/option.c +++ b/src/nvim/option.c @@ -5825,7 +5825,7 @@ int ExpandSettingSubtract(expand_T *xp, regmatch_T *regmatch, int *numMatches, c if (*xp->xp_pattern != NUL) { // Don't suggest anything if cmdline is non-empty. Vim's set-= // behavior requires consecutive strings and it's usually - // unintuitive to users if ther try to subtract multiple flags at + // unintuitive to users if they try to subtract multiple flags at // once. return FAIL; } diff --git a/src/nvim/os/fs.c b/src/nvim/os/fs.c index 2712b874bb..9a448d69ae 100644 --- a/src/nvim/os/fs.c +++ b/src/nvim/os/fs.c @@ -66,7 +66,7 @@ static const char e_xattr_erange[] static const char e_xattr_e2big[] = N_("E1508: Size of the extended attribute value is larger than the maximum size allowed"); static const char e_xattr_other[] - = N_("E1509: Error occured when reading or writing extended attribute"); + = N_("E1509: Error occurred when reading or writing extended attribute"); #endif struct iovec; -- cgit