Kaynağa Gözat

Fixed error message in json::decode()

Tatsuhiro Tsujikawa 14 yıl önce
ebeveyn
işleme
bc7ac15d7e
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/json.cc

+ 1 - 1
src/json.cc

@@ -454,7 +454,7 @@ decode
     return decodeNull(first, last);
   } else {
     throw DL_ABORT_EX2("JSON decoding failed:"
-                       " Unexpected EOF in term context.",
+                       " Unexpected character in term context.",
                        error_code::JSON_PARSE_ERROR);
   }
 }