aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/parser/js/js-parser-tagged-template-literal.c
diff options
context:
space:
mode:
Diffstat (limited to 'jerry-core/parser/js/js-parser-tagged-template-literal.c')
-rw-r--r--jerry-core/parser/js/js-parser-tagged-template-literal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/jerry-core/parser/js/js-parser-tagged-template-literal.c b/jerry-core/parser/js/js-parser-tagged-template-literal.c
index f140526b..f2ce91ec 100644
--- a/jerry-core/parser/js/js-parser-tagged-template-literal.c
+++ b/jerry-core/parser/js/js-parser-tagged-template-literal.c
@@ -23,7 +23,7 @@
#include "js-lexer.h"
-/* \addtogroup parser Parser
+/** \addtogroup parser Parser
* @{
*
* \addtogroup jsparser JavaScript
@@ -135,7 +135,7 @@ parser_new_tagged_template_literal (ecma_object_t **raw_strings_p) /**< [out] ra
* Set integrity level of the given template array object to "frozen"
*/
static void
-parser_tagged_template_literal_freeze_array (ecma_object_t *obj_p)
+parser_tagged_template_literal_freeze_array (ecma_object_t *obj_p /**< template object */)
{
JERRY_ASSERT (ecma_get_object_type (obj_p) == ECMA_OBJECT_TYPE_ARRAY);
ecma_op_ordinary_object_prevent_extensions (obj_p);