From 296045ad66985fca67a4dddc274ef12edb95784b Mon Sep 17 00:00:00 2001 From: Manohar Poreddy Date: Tue, 18 Oct 2016 18:39:49 +0530 Subject: [PATCH] docs(quickstart.js): fix typo (#2614) declarations instead of declaration --- public/docs/js/latest/quickstart.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/docs/js/latest/quickstart.jade b/public/docs/js/latest/quickstart.jade index 7c3f31ed14..baa7ea01fc 100644 --- a/public/docs/js/latest/quickstart.jade +++ b/public/docs/js/latest/quickstart.jade @@ -482,7 +482,7 @@ code-example(format=""). 1. Which components and directives we declare in our components 1. The component to bootstrap at the start - We import our lone `app.AppComponent` and add it to both `declaration` and `bootstrap` array. + We import our lone `app.AppComponent` and add it to both `declarations` and `bootstrap` array. Notice that we also add `ng.platformBrowser.BrowserModule` to the `imports` array. This is the Angular Module that contains all the needed Angular bits and pieces to run our app in the browser.