style(docs): make jslint happy - fix some warnings

This commit is contained in:
Vojta Jina
2011-11-11 17:15:22 -08:00
committed by Misko Hevery
parent 035c751076
commit acbd7cdf32
103 changed files with 569 additions and 573 deletions

View File

@@ -43,7 +43,7 @@ and {@link dev_guide.expressions expressions}:
In a simple single-page app, the template consists of HTML, CSS, and angular directives contained
in just one HTML file (usually `index.html`). In a more complex app, you can display multiple views
within one main page using "partials", which are segments of template located in separate HTML
files. You "include" the partials in the main page using the {@link api/angular.module.NG.$route
files. You "include" the partials in the main page using the {@link api/angular.module.ng.$route
$route} service in conjunction with the {@link api/angular.widget.ng:view ng:view} directive. An
example of this technique is shown in the {@link tutorial/ angular tutorial}, in steps seven and
eight.