From 4a29995fe74ed95c641ef40c68d8a4223e90cccf Mon Sep 17 00:00:00 2001 From: ZyX Date: Mon, 7 Mar 2016 06:41:00 +0300 Subject: eval/decode: Rename brackets in error messages U+007D is officially RIGHT CURLY BRACKET. U+005D is officially RIGHT SQUARE BRACKET. --- src/nvim/eval/decode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/eval/decode.c b/src/nvim/eval/decode.c index d6426ee643..fc6e912c20 100644 --- a/src/nvim/eval/decode.c +++ b/src/nvim/eval/decode.c @@ -249,10 +249,10 @@ json_decode_string_cycle_start: } ContainerStackItem last_container = kv_last(container_stack); if (*p == '}' && last_container.container.v_type != VAR_DICT) { - EMSG2(_("E474: Closing list with figure brace: %s"), p); + EMSG2(_("E474: Closing list with curly bracket: %s"), p); goto json_decode_string_fail; } else if (*p == ']' && last_container.container.v_type != VAR_LIST) { - EMSG2(_("E474: Closing dictionary with bracket: %s"), p); + EMSG2(_("E474: Closing dictionary with square bracket: %s"), p); goto json_decode_string_fail; } else if (didcomma) { EMSG2(_("E474: Trailing comma: %s"), p); -- cgit