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.