From 1859802d050db2b1d620a1133aa46183d6f2b3e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Lipi=C5=84ski?= Date: Tue, 15 May 2018 10:47:35 +0200 Subject: [PATCH] Remove trailing space in `slice` --- slice.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/slice.js b/slice.js index a83201156..c137b7902 100644 --- a/slice.js +++ b/slice.js @@ -8,8 +8,8 @@ * @since 3.0.0 * @category Array * @param {Array} array The array to slice. - * @param {number} [start=0] The start position. A negative index will be treated as an offset from the end. - * @param {number} [end=array.length] The end position. A negative index will be treated as an offset from the end. + * @param {number} [start=0] The start position. A negative index will be treated as an offset from the end. + * @param {number} [end=array.length] The end position. A negative index will be treated as an offset from the end. * @returns {Array} Returns the slice of `array`. */ function slice(array, start, end) {