From 7c23ebc8231d0a0831a3152e04ccb0f8eecb850a Mon Sep 17 00:00:00 2001 From: Deborah Kurata Date: Mon, 7 Mar 2016 19:38:52 -0800 Subject: [PATCH] doc(quick start) Fixed typos. closes #924 --- public/docs/ts/latest/quickstart.jade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/docs/ts/latest/quickstart.jade b/public/docs/ts/latest/quickstart.jade index a66d43c930..be92abffe5 100644 --- a/public/docs/ts/latest/quickstart.jade +++ b/public/docs/ts/latest/quickstart.jade @@ -216,7 +216,7 @@ a(id="app-component") The metadata tell Angular how to create and use this component. We apply this function to the component class - by prefixing the function with the **@** symbol and invoking it with the metadata object. + by prefixing the function with the **@** symbol and invoking it with the metadata object just above the class: +makeExample('quickstart/ts/app/app.component.ts', 'metadata', 'app/app.component.ts (metadata)')(format=".") :marked @@ -397,7 +397,7 @@ code-example(format=""). * We see compiler warnings and errors that are hidden from us in the browser. * Pre-compilation simpifies the module loading process and - it's much easier to diagnose problem when this is a separate, external step. + it's much easier to diagnose problems when this is a separate, external step. * Pre-compilation means a faster user experience because the browser doesn't waste time compiling.