From 643afa4b156901c56a060d9937dba7717bc8bb35 Mon Sep 17 00:00:00 2001 From: Alberto Santini Date: Thu, 8 Sep 2016 01:05:05 +0200 Subject: [PATCH] docs(cheatsheet): fix typo NgModule definition (#11377) `.Class` and not `.class` in js approach for NgModule definition. --- modules/@angular/docs/cheatsheet/ngmodules.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/@angular/docs/cheatsheet/ngmodules.md b/modules/@angular/docs/cheatsheet/ngmodules.md index 2cafc4b5a1..d55972ee9a 100644 --- a/modules/@angular/docs/cheatsheet/ngmodules.md +++ b/modules/@angular/docs/cheatsheet/ngmodules.md @@ -16,7 +16,7 @@ Defines a module that contains components, directives, pipes, and providers. syntax(js): `ng.core.NgModule({declarations: ..., imports: ..., exports: ..., providers: ..., bootstrap: ...}). -class({ constructor: function() {}})` +Class({ constructor: function() {}})` description: Defines a module that contains components, directives, pipes, and providers.