From 4bda8288fb2fba14d02359f636375ca128aaad02 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Tue, 2 Mar 2010 13:38:47 -0800 Subject: json: Fix typo in error message. --- lib/json.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lib/json.c') 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 != '\\') { -- cgit v1.2.1