fixing var compilation issue in docs

This commit is contained in:
Peli de Halleux
2017-02-25 05:38:18 -08:00
parent bdc5122ce4
commit b8aa63411c
5 changed files with 43 additions and 35 deletions

View File

@ -39,8 +39,8 @@ coll.push("cat")
## 4. Write the five (5) lines of code that will add the following five words to `data->coll`: puppy, clock, night, cat, cow.
```ts
let coll = (<string[]>[])
```typescript
let coll : string[] = [];
```
<br/>