From 8fc060b8b35eedf82c86ac1eb4e89ea4214d0b83 Mon Sep 17 00:00:00 2001 From: Aioshiro Date: Sun, 1 Jun 2025 17:05:30 +0200 Subject: [PATCH] Fix extra parenthesis in `Array.slice` description --- doc/classes/Array.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/classes/Array.xml b/doc/classes/Array.xml index 35415b3b3ac..8d9e92dbfc8 100644 --- a/doc/classes/Array.xml +++ b/doc/classes/Array.xml @@ -740,7 +740,7 @@ Returns a new [Array] containing this array's elements, from index [param begin] (inclusive) to [param end] (exclusive), every [param step] elements. If either [param begin] or [param end] are negative, their value is relative to the end of the array. If [param step] is negative, this method iterates through the array in reverse, returning a slice ordered backwards. For this to work, [param begin] must be greater than [param end]. - If [param deep] is [code]true[/code], all nested [Array] and [Dictionary] elements in the slice are duplicated from the original, recursively. See also [method duplicate]). + If [param deep] is [code]true[/code], all nested [Array] and [Dictionary] elements in the slice are duplicated from the original, recursively. See also [method duplicate]. [codeblock] var letters = ["A", "B", "C", "D", "E", "F"]