docs: typo fix, change "insure" to "ensure" (#29737)

PR Close #29737
This commit is contained in:
Andrew Seguin 2019-04-05 16:23:03 -07:00 committed by Igor Minar
parent e682b4453c
commit 632847d34d
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ For example, `main` should point at a JavaScript file, not a TypeScript file.
## Use TypeScript path mapping for peer dependencies
Angular libraries should list all `@angular/*` dependencies as peer dependencies.
This insures that when modules ask for Angular, they all get the exact same module.
This ensures that when modules ask for Angular, they all get the exact same module.
If a library lists `@angular/core` in `dependencies` instead of `peerDependencies`, it might get a different Angular module instead, which would cause your application to break.
While developing a library, you must install all peer dependencies through `devDependencies` to ensure that the library compiles properly.