aboutsummaryrefslogtreecommitdiff
path: root/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c
diff options
context:
space:
mode:
authorZsolt Borbély <zsborbely.u-szeged@partner.samsung.com>2016-05-02 13:38:28 +0200
committerZsolt Borbély <zsborbely.u-szeged@partner.samsung.com>2016-05-02 13:38:28 +0200
commit7813801cd32c7307550fc5b328ae85e38c90712b (patch)
treecf6f4d5bec19dc4b843891ece3a5f95242520138 /jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c
parent19b972b8eb42cc967f9e14097f86889d309531ba (diff)
Fix wrong indentations of function parameters
JerryScript-DCO-1.0-Signed-off-by: Zsolt Borbély zsborbely.u-szeged@partner.samsung.com
Diffstat (limited to 'jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c')
-rw-r--r--jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c b/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c
index d5c813d8..5ebe23e4 100644
--- a/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c
+++ b/jerry-core/ecma/builtin-objects/ecma-builtin-array-prototype.c
@@ -826,8 +826,8 @@ ecma_builtin_array_prototype_object_shift (ecma_value_t this_arg) /**< this argu
*/
static ecma_value_t
ecma_builtin_array_prototype_object_slice (ecma_value_t this_arg, /**< 'this' argument */
- ecma_value_t arg1, /**< start */
- ecma_value_t arg2) /**< end */
+ ecma_value_t arg1, /**< start */
+ ecma_value_t arg2) /**< end */
{
ecma_value_t ret_value = ecma_make_simple_value (ECMA_SIMPLE_VALUE_EMPTY);
@@ -1352,8 +1352,8 @@ ecma_builtin_array_prototype_object_sort (ecma_value_t this_arg, /**< this argum
*/
static ecma_value_t
ecma_builtin_array_prototype_object_splice (ecma_value_t this_arg, /**< this argument */
- const ecma_value_t args[], /**< arguments list */
- ecma_length_t args_number) /**< number of arguments */
+ const ecma_value_t args[], /**< arguments list */
+ ecma_length_t args_number) /**< number of arguments */
{
ecma_value_t ret_value = ecma_make_simple_value (ECMA_SIMPLE_VALUE_EMPTY);