line 46: 
changed "we loose" to "we lose"
This commit is contained in:
va-z 2019-07-27 01:44:17 +05:00 committed by GitHub
parent f6ff773033
commit 339c0b622e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -43,7 +43,7 @@ function printList(list) {
}
```
...But that would be unwise. In the future we may need to extend a function, do something else with the list. If we change `list`, then we loose such ability.
...But that would be unwise. In the future we may need to extend a function, do something else with the list. If we change `list`, then we lose such ability.
Talking about good variable names, `list` here is the list itself. The first element of it. And it should remain like that. That's clear and reliable.