Skip to content

Commit 95338ff

Browse files
committed
修复文档错误
1 parent 668442c commit 95338ff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/beginner/usecollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
|-|-|-|
1313
|array|数组类型,与list相似,但生成的代码对应原生数组类型,如C#语言中对应 `xxx[]`| `array,int``array,string``array,Color``array,Item`|
1414
|list|列表类型,与array相似,但生成的代码对应List容器类型,如C#语言中对应 `List<xx>`| `list,int``list,string``list,Color``list,Item`|
15-
|set|集合类型,要求元素值唯一,生成的代码对应Set容器类型,如C#语言中对应 `HashSet<xx>`| `list,int``list,string``list,Color``list,Item`|
15+
|set|集合类型,要求元素值唯一,生成的代码对应Set容器类型,如C#语言中对应 `HashSet<xx>`| `list,int``list,string``list,Color`|
1616
|map|字典类型,要求键唯一,生成的代码对应Map类型,如C#语言中对应`Dictionary<xx,yy>`|`map,int,int``map,string,string`, `map,Color,int``map,int,Item`|
1717

1818
## 填写array、list、set数据

i18n/en/docusaurus-plugin-content-docs/current/beginner/usecollection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Currently supports 4 basic container types, see [Container Type](../manual/types
1212
|-|-|-|
1313
|array|Array type, similar to list, but the generated code corresponds to the native array type, such as `xxx[]` in C# language| `array,int`, `array,string`, `array,Color`, `array,Item`|
1414
|list|List type, similar to array, but the generated code corresponds to the List container type, such as `List<xx>` in C# language| `list,int`, `list,string`, `list,Color`, `list,Item`|
15-
|set|Set type, requires unique element values, the generated code corresponds to the Set container type, such as `HashSet<xx>` in C# language| `list,int``list,string``list,Color``list,Item`|
15+
|set|Set type, requires unique element values, the generated code corresponds to the Set container type, such as `HashSet<xx>` in C# language| `list,int``list,string``list,Color`|
1616
|map|Dictionary type, key is required to be unique, the generated code corresponds to Map type, such as `Dictionary<xx,yy>`|`map,int,int``map,string,string`, `map,Color,int``map,int,Item`| in C# language
1717

1818
## Fill in array, list, set data

0 commit comments

Comments
 (0)