mirror of
https://github.com/neovim/neovim.git
synced 2025-09-29 14:38:32 +00:00
vim-patch:8.2.1697: inconsistent capitalization of error messages (#23476)
Problem: Inconsistent capitalization of error messages.
Solution: Always start with a capital.
7707228aac
Most of these errors are Vim9 script only.
Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
@@ -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");
|
||||
|
||||
|
Reference in New Issue
Block a user