diff --git a/tiny-json.h b/tiny-json.h index 8066758..78e4e19 100644 --- a/tiny-json.h +++ b/tiny-json.h @@ -127,8 +127,7 @@ static inline int64_t json_getInteger( json_t const* property ) { } /** Get the value of a json real property. - * @param property A valid handler of a json object. - * Its type must be JSON_REAL or JSON_SCIENTIFIC. + * @param property A valid handler of a json object. Its type must be JSON_REAL. * @return The value. */ static inline double json_getReal( json_t const* property ) { return atof( property->u.value );