mirror of
https://github.com/neovim/neovim.git
synced 2025-09-18 09:18:19 +00:00
*: Fix linter errors
Drops comments `// for …` that do not pass linter for them being unmaintainable and fast to becoming incomplete or even incorrect. Mention @dedmass
This commit is contained in:
@@ -755,9 +755,9 @@ json_decode_string_cycle_start:
|
||||
break;
|
||||
}
|
||||
case '"': {
|
||||
if (parse_json_string(
|
||||
buf, buf_len, &p, &stack, &container_stack,
|
||||
&next_map_special, &didcomma, &didcolon) == FAIL) {
|
||||
if (parse_json_string(buf, buf_len, &p, &stack, &container_stack,
|
||||
&next_map_special, &didcomma, &didcolon)
|
||||
== FAIL) {
|
||||
// Error message was already given
|
||||
goto json_decode_string_fail;
|
||||
}
|
||||
|
Reference in New Issue
Block a user