summaryrefslogtreecommitdiffstats
path: root/src/typval.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2022-01-08 21:38:52 +0000
committerBram Moolenaar <Bram@vim.org>2022-01-08 21:38:52 +0000
commitb2810f123cbf4b585f8bc5f0e594a6690d95729a (patch)
treea2b290edcfc5864afd940badf68b6bc0f8e6731c /src/typval.c
parent782b43d89473dac00e3a8e02224a8330b88dbfef (diff)
patch 8.2.4046: some error messages not in the right placev8.2.4046
Problem: Some error messages not in the right place. Solution: Adjust the errors file. Fix typo.
Diffstat (limited to 'src/typval.c')
-rw-r--r--src/typval.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/typval.c b/src/typval.c
index eb0ef77b74..ab226403df 100644
--- a/src/typval.c
+++ b/src/typval.c
@@ -320,7 +320,7 @@ tv_get_float_chk(typval_T *varp, int *error)
emsg(_(e_using_dictionary_as_float));
break;
case VAR_BOOL:
- emsg(_(e_using_boolean_valud_as_float));
+ emsg(_(e_using_boolean_value_as_float));
break;
case VAR_SPECIAL:
emsg(_(e_using_special_value_as_float));