docs(bundles/overview.md): fix typo

Closes #7677
This commit is contained in:
Igor Minar 2016-03-19 15:24:43 -07:00 committed by Igor Minar
parent b0f585ab08
commit 363ed5140e
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ An example of an Angular 2 project built with WebPack can be found in the [angul
Polyfills are required for Angular 2 to function properly (the exact list depends on the browser used) and external dependencies ([zone.js](https://github.com/angular/zone.js)).
To ease setup of Angular 2 applications there is one file - `angular2-polyfills.js` - that combines:
* a pollyfill mandatory for all browsers: [reflect-metadata](https://www.npmjs.com/package/reflect-metadata)
* a polyfill mandatory for all browsers: [reflect-metadata](https://www.npmjs.com/package/reflect-metadata)
* [zone.js](https://github.com/angular/zone.js)
**Note**: `angular2-polyfills.js` contains code that should be loaded into the browser as the very first code of the web application even before the module loader. The preferred solution is to load the mentioned file in a `script` tag as early as possible.