fix: typo

This commit is contained in:
Daniel
2023-08-09 14:29:44 +08:00
committed by GitHub
parent 0ea2581fa0
commit 8cd15d580f

View File

@@ -32,7 +32,7 @@ let arr:(number|string)[];
let arr:any[];
```
数组类型的第二种写法是使用 TypeScipt 内置的 Array 接口。
数组类型的第二种写法是使用 TypeScript 内置的 Array 接口。
```typescript
let arr:Array<number> = [1, 2, 3];