@@ -26,11 +26,11 @@ } #endif @interface OFString (JSONValue) /*! - * @brief Creates an object from the JSON value of the string. + * The string interpreted as JSON and parsed as an object. * * @note This also allows parsing JSON5, an extension of JSON. See * http://json5.org/ for more details. * * @warning Although not specified by the JSON specification, this can also @@ -39,14 +39,12 @@ * single primitive, leading to real world JSON files sometimes only * consisting of a single primitive. Therefore, you should not make any * assumptions about the object returned by this method if you don't * want your program to terminate due to a message not understood, but * instead check the returned object using @ref isKindOfClass:. - * - * @return An object */ -- (id)JSONValue; +@property (readonly, nonatomic) id JSONValue; /*! * @brief Creates an object from the JSON value of the string. * * @note This also allows parsing JSON5, an extension of JSON. See