From 39335d96d36d8c3d76dffdb434858ddaefbbac31 Mon Sep 17 00:00:00 2001 From: Mohamed Daif Date: Tue, 22 Apr 2014 11:40:57 +0200 Subject: [PATCH] docs(tutorial/step_00): add correct description for attributes naming convention --- docs/content/tutorial/step_00.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc index e06ff40a..d59334e0 100644 --- a/docs/content/tutorial/step_00.ngdoc +++ b/docs/content/tutorial/step_00.ngdoc @@ -67,7 +67,7 @@ __`app/index.html`:__ The `ng-app` attribute represents an Angular directive named `ngApp` (Angular uses - `name-with-dashes` for its custom attributes and `camelCase` for the corresponding directives + `spinal-case` for its custom attributes and `camelCase` for the corresponding directives which implement them). This directive is used to flag the html element that Angular should consider to be the root element of our application.