summaryrefslogtreecommitdiff
path: root/lib/json.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/json.c')
-rw-r--r--lib/json.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/json.c b/lib/json.c
index 8fd9c3a7a..10fa3c121 100644
--- a/lib/json.c
+++ b/lib/json.c
@@ -832,7 +832,7 @@ json_string_unescape(const char *in, size_t in_len, char **outp)
while (in < end) {
if (*in == '"') {
ds_clear(&out);
- ds_put_cstr(&out, "quoted string may not include unescape \"");
+ ds_put_cstr(&out, "quoted string may not include unescaped \"");
goto exit;
}
if (*in != '\\') {