Typo correction

Changed "descirbed" to "described"
This commit is contained in:
harmony yap 2019-03-08 21:57:13 +00:00 committed by GitHub
parent 3113f7deef
commit ea5139f4cd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -158,7 +158,7 @@ So far, we've seen how to import/export multiple things, optionally "as" other n
In practice, modules contain either:
- A library, pack of functions, like `lib.js`.
- Or an entity, like `class User` is descirbed in `user.js`, the whole module has only this class.
- Or an entity, like `class User` is described in `user.js`, the whole module has only this class.
Mostly, the second approach is preferred, so that every "thing" resides in its own module.