Missing 'we' word in the 'Generics' doc

This commit is contained in:
Emmanuel DEMEY 2015-08-02 19:03:08 +02:00
Родитель bd1a80d1fe
Коммит dc8d63c923
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -66,7 +66,7 @@ function identity<T>(arg: T): T {
}
```
What if want to also log the length of the argument 'arg' to the console with each call. We might be tempted to write this:
What if we want to also log the length of the argument 'arg' to the console with each call? We might be tempted to write this:
```TypeScript
function loggingIdentity<T>(arg: T): T {