diff options
author | zeertzjq <zeertzjq@outlook.com> | 2023-05-04 23:17:43 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-04 23:17:43 +0800 |
commit | b16729f8162ce21a52f079c3849f5011b768d0ce (patch) | |
tree | 2f6c29f6c9af0cb9eff19c9a07102c5275e0f21e /src/nvim/testing.c | |
parent | fe7cdc7cc0037bb41bd940bee7818a5235ffaa79 (diff) | |
download | rneovim-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/testing.c')
-rw-r--r-- | src/nvim/testing.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/testing.c b/src/nvim/testing.c index 907940f64a..0e779f9b8d 100644 --- a/src/nvim/testing.c +++ b/src/nvim/testing.c @@ -35,11 +35,11 @@ #endif static const char e_assert_fails_second_arg[] - = N_("E856: assert_fails() second argument must be a string or a list with one or two strings"); + = N_("E856: \"assert_fails()\" second argument must be a string or a list with one or two strings"); static const char e_assert_fails_fourth_argument[] - = N_("E1115: assert_fails() fourth argument must be a number"); + = N_("E1115: \"assert_fails()\" fourth argument must be a number"); static const char e_assert_fails_fifth_argument[] - = N_("E1116: assert_fails() fifth argument must be a string"); + = N_("E1116: \"assert_fails()\" fifth argument must be a string"); static const char e_calling_test_garbagecollect_now_while_v_testing_is_not_set[] = N_("E1142: Calling test_garbagecollect_now() while v:testing is not set"); |