aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/eval.c
diff options
context:
space:
mode:
authorzeertzjq <zeertzjq@outlook.com>2023-05-04 23:17:43 +0800
committerGitHub <noreply@github.com>2023-05-04 23:17:43 +0800
commitb16729f8162ce21a52f079c3849f5011b768d0ce (patch)
tree2f6c29f6c9af0cb9eff19c9a07102c5275e0f21e /src/nvim/eval.c
parentfe7cdc7cc0037bb41bd940bee7818a5235ffaa79 (diff)
downloadrneovim-b16729f8162ce21a52f079c3849f5011b768d0ce.tar.gz
rneovim-b16729f8162ce21a52f079c3849f5011b768d0ce.tar.bz2
rneovim-b16729f8162ce21a52f079c3849f5011b768d0ce.zip
vim-patch:8.2.1697: inconsistent capitalization of error messages (#23476)
Problem: Inconsistent capitalization of error messages. Solution: Always start with a capital. https://github.com/vim/vim/commit/7707228aace9aff16434edf5377a354c6ad07316 Most of these errors are Vim9 script only. Co-authored-by: Bram Moolenaar <Bram@vim.org>
Diffstat (limited to 'src/nvim/eval.c')
-rw-r--r--src/nvim/eval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/eval.c b/src/nvim/eval.c
index c0756c1ed6..d9d4708b89 100644
--- a/src/nvim/eval.c
+++ b/src/nvim/eval.c
@@ -89,7 +89,7 @@
static const char *e_missbrac = N_("E111: Missing ']'");
static const char *e_list_end = N_("E697: Missing end of List ']': %s");
static const char *e_cannot_slice_dictionary
- = N_("E719: cannot slice a Dictionary");
+ = N_("E719: Cannot slice a Dictionary");
static const char e_cannot_index_special_variable[]
= N_("E909: Cannot index a special variable");
static const char *e_nowhitespace