From 2ea5e9e3fd1be432cec78707dafdbb68062c1622 Mon Sep 17 00:00:00 2001 From: jing_han Date: Tue, 17 Jan 2023 20:03:53 +0800 Subject: [PATCH] Modify the data related to LinkedList Signed-off-by: jing_han --- .../application-dev/reference/apis/js-apis-linkedlist.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md b/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md index b6c4763426..17317ee225 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md +++ b/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md @@ -389,7 +389,7 @@ removeFirst(): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeFirst method cannot be bound. | -| 10200010 | The container is empty. | +| 10200010 | Container is empty. | **示例:** @@ -424,7 +424,7 @@ removeLast(): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeLast method cannot be bound. | -| 10200010 | The container is empty. | +| 10200010 | Container is empty. | **示例:** @@ -504,7 +504,7 @@ removeFirstFound(element: T): boolean | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeFirstFound method cannot be bound. | -| 10200010 | The container is empty. | +| 10200010 | Container is empty. | **示例:** @@ -544,7 +544,7 @@ removeLastFound(element: T): boolean | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeLastFound method cannot be bound. | -| 10200010 | The container is empty. | +| 10200010 | Container is empty. | **示例:** -- GitLab