diff --git a/zh-cn/application-dev/reference/apis/js-apis-arraylist.md b/zh-cn/application-dev/reference/apis/js-apis-arraylist.md index b65af8cd98ceb0cda80db811dfc04894a079eaa1..5e717140c5a93bb0bccfa3e269df811f6cc24cd0 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-arraylist.md +++ b/zh-cn/application-dev/reference/apis/js-apis-arraylist.md @@ -117,7 +117,7 @@ insert(element: T, index: number): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The insert method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -276,7 +276,7 @@ removeByIndex(index: number): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeByIndex method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -351,7 +351,7 @@ removeByRange(fromIndex: number, toIndex: number): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeByRange method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of fromIndex or toIndex is out of range. | **示例:** @@ -527,7 +527,7 @@ subArrayList(fromIndex: number, toIndex: number): ArrayList<T> | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The subArrayList method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of fromIndex or toIndex is out of range. | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md b/zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md index f61d8cc4b3e3a44b840177f5bc7fb97da612f6fd..ba7f63a98c7c6789b5f2353c07873671a8c88cdd 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md +++ b/zh-cn/application-dev/reference/apis/js-apis-lightweightmap.md @@ -374,7 +374,7 @@ getKeyAt(index: number): K | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The getKeyAt method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -559,7 +559,7 @@ setValueAt(index: number, newValue: V): boolean | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The setValueAt method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -598,7 +598,7 @@ getValueAt(index: number): V | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The getValueAt method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-lightweightset.md b/zh-cn/application-dev/reference/apis/js-apis-lightweightset.md index 45bb2c1d731d24c66cba99a54ea095dca0802e4e..b9cee941a6505f955acf363f2705002d538e7783 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-lightweightset.md +++ b/zh-cn/application-dev/reference/apis/js-apis-lightweightset.md @@ -293,7 +293,7 @@ increaseCapacityTo(minimumCapacity: number): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The increaseCapacityTo method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of minimumCapacity is out of range. | **示例:** 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 59ec6e1719f5c98a58d0a07b4497703d586614c6..6802a7b912cc5e4947cb2cae1da76a201ffdf458 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md +++ b/zh-cn/application-dev/reference/apis/js-apis-linkedlist.md @@ -153,7 +153,7 @@ insert(index: number, element: T): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The insert method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -354,7 +354,7 @@ removeByIndex(index: number): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeByIndex method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -690,7 +690,7 @@ set(index: number, element: T): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The set method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-list.md b/zh-cn/application-dev/reference/apis/js-apis-list.md index bb53f4a759319696cb5522598ad00390257fe77f..adcd973c83b7fa21bfc49b6546949085b4f954ac 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-list.md +++ b/zh-cn/application-dev/reference/apis/js-apis-list.md @@ -116,7 +116,7 @@ insert(element: T, index: number): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The insert method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -363,7 +363,7 @@ removeByIndex(index: number): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeByIndex method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -578,7 +578,7 @@ getSubList(fromIndex: number, toIndex: number): List<T> | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The getSubList method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of fromIndex or toIndex is out of range. | **示例:** @@ -648,7 +648,7 @@ set(index: number, element: T): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The set method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** diff --git a/zh-cn/application-dev/reference/apis/js-apis-plainarray.md b/zh-cn/application-dev/reference/apis/js-apis-plainarray.md index 8fe09c24839ba17856f98cbae632af31b584b01f..22a35405ae19f92de6729447aea787b8634b99da 100644 --- a/zh-cn/application-dev/reference/apis/js-apis-plainarray.md +++ b/zh-cn/application-dev/reference/apis/js-apis-plainarray.md @@ -302,7 +302,7 @@ getValueAt(index: number): T | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The getValueAt method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -480,7 +480,7 @@ removeRangeFrom(index: number, size: number): number | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The removeRangeFrom method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:** @@ -514,7 +514,7 @@ setValueAt(index: number, value: T): void | 错误码ID | 错误信息 | | -------- | -------- | | 10200011 | The setValueAt method cannot be bound. | -| 10200001 | The parameter value is out of range. | +| 10200001 | The value of index is out of range. | **示例:**