From 6862798161acd5363189212aefcb8278142cbd94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=91=9B=E4=BA=9A=E8=8A=B3?= Date: Wed, 8 Feb 2023 09:42:10 +0000 Subject: [PATCH] update zh-cn/application-dev/reference/apis/js-apis-treeset.md. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 葛亚芳 --- zh-cn/application-dev/reference/apis/js-apis-treeset.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-treeset.md b/zh-cn/application-dev/reference/apis/js-apis-treeset.md index 1507393e73..bce616971a 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-treeset.md +++ b/zh-cn/application-dev/reference/apis/js-apis-treeset.md @@ -382,8 +382,8 @@ forEach(callbackfn: (value?: T, key?: T, set?: TreeSet<T>) => void, thisAr callbackfn的参数说明: | 参数名 | 类型 | 必填 | 说明 | | -------- | -------- | -------- | -------- | -| value | T | 否 | 当前遍历到的元素。 | -| key | T | 否 | 当前遍历到的元素(和value相同)。 | +| value | T | 否 | 当前遍历到的value元素。 | +| key | T | 否 | 当前遍历到的key元素。 | | set | TreeSet<T> | 否 | 当前调用forEach方法的实例对象。 | **示例:** -- GitLab