Skip to content

Commit

Permalink
Update Basic Types.md
Browse files Browse the repository at this point in the history
Fix typo.
  • Loading branch information
zhongsp committed Jan 1, 2016
1 parent 98cd3e7 commit 1691cc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/handbook/Basic Types.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ let prettySure: Object = 4;
prettySure.toFixed(); // Error: Property 'toFixed' doesn't exist on type 'Object'.
```

当你只知道一分部数据的类型时`any`类型也是有用的。
当你只知道一部分数据的类型时`any`类型也是有用的。
比如,你有一个数组,它包含了不同的类型的数据:

```ts
Expand Down Expand Up @@ -194,4 +194,4 @@ let unusable: void = undefined;

你可能已经注意到了,我们使用`let`关键字来代替大家所熟悉的JavaScript关键字`var`
`let`关键字是JavaScript的一个新概念,TypeScript实现了它。
我们会在以后详细介绍它,很多常见的问题都可以通过使用`let`来解决,所以尽可能地使用`let`来代替`var`吧。
我们会在以后详细介绍它,很多常见的问题都可以通过使用`let`来解决,所以尽可能地使用`let`来代替`var`吧。

0 comments on commit 1691cc2

Please sign in to comment.