Typo fixes related to jerry_json_stringify (#2611)

JerryScript-DCO-1.0-Signed-off-by: Daniel Balla dballa@inf.u-szeged.hu
This commit is contained in:
Daniel Balla
2018-11-22 01:05:34 +00:00
committed by Akos Kiss
parent c87aa83b0d
commit f9e21540d6
4 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -3406,7 +3406,7 @@ jerry_json_parse (const jerry_char_t *string_p, /**< json string */
* @return json formated jerry_value_t or an error massage
*/
jerry_value_t
jerry_json_stringfy (const jerry_value_t object_to_stringify) /**< a jerry_object_t to stringify */
jerry_json_stringify (const jerry_value_t object_to_stringify) /**< a jerry_object_t to stringify */
{
jerry_assert_api_available ();
#ifndef CONFIG_DISABLE_JSON_BUILTIN
@@ -3423,7 +3423,7 @@ jerry_json_stringfy (const jerry_value_t object_to_stringify) /**< a jerry_objec
return jerry_throw (ecma_raise_syntax_error (ECMA_ERR_MSG ("The JSON has been disabled.")));
#endif /* !CONFIG_DISABLE_JSON_BUILTIN */
} /* jerry_json_stringfy */
} /* jerry_json_stringify */
/**
* @}