소스 검색

Fixed error message in json::decode()

Tatsuhiro Tsujikawa 14 년 전
부모
커밋
bc7ac15d7e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  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);
   }
 }