diff options
| author | Vojta Jina | 2011-11-11 17:15:22 -0800 |
|---|---|---|
| committer | Misko Hevery | 2011-11-14 20:31:19 -0800 |
| commit | acbd7cdf320f0570fcc1952c8680d4c78bc8fa2c (patch) | |
| tree | 2483609ada03b9e6ff477596f0402dc24fdd7518 /docs/content/api | |
| parent | 035c7510763a9742294d51ba55aea0b6dd08ea58 (diff) | |
| download | angular.js-acbd7cdf320f0570fcc1952c8680d4c78bc8fa2c.tar.bz2 | |
style(docs): make jslint happy - fix some warnings
Diffstat (limited to 'docs/content/api')
| -rw-r--r-- | docs/content/api/angular.module.NG.ngdoc | 5 | ||||
| -rw-r--r-- | docs/content/api/angular.module.ngdoc | 6 | ||||
| -rw-r--r-- | docs/content/api/index.ngdoc | 10 |
3 files changed, 8 insertions, 13 deletions
diff --git a/docs/content/api/angular.module.NG.ngdoc b/docs/content/api/angular.module.NG.ngdoc deleted file mode 100644 index 84bb574b..00000000 --- a/docs/content/api/angular.module.NG.ngdoc +++ /dev/null @@ -1,5 +0,0 @@ -@ngdoc overview -@name angular.module.NG -@description - -The `NG` is an angular module which contains all of the core angular services. diff --git a/docs/content/api/angular.module.ngdoc b/docs/content/api/angular.module.ngdoc index f35fc589..ccfec6b7 100644 --- a/docs/content/api/angular.module.ngdoc +++ b/docs/content/api/angular.module.ngdoc @@ -25,7 +25,7 @@ function MyModule($provide, $locationProvider){ }; </pre> -See: {@link angular.module.AUTO.$provide $provide}, {@link angular.module.NG.$locationProvider $locationProvider}. +See: {@link angular.module.AUTO.$provide $provide}, {@link angular.module.ng.$locationProvider $locationProvider}. # Registering Module Function @@ -44,11 +44,11 @@ angular.module.MyModule = function(){ Then you can refer to your module like this: <pre> -var injector = angular.injector('NG', 'MyModule') +var injector = angular.injector('ng', 'MyModule') </pre> Or <pre> -var injector = angular.injector('NG', angular.module.MyModule) +var injector = angular.injector('ng', angular.module.MyModule) </pre> diff --git a/docs/content/api/index.ngdoc b/docs/content/api/index.ngdoc index 6c5745dc..ccacef80 100644 --- a/docs/content/api/index.ngdoc +++ b/docs/content/api/index.ngdoc @@ -7,23 +7,23 @@ * {@link angular.widget Widgets} - Angular custom DOM element * {@link angular.directive Directives} - Angular DOM element attributes * {@link angular.markup Markup} and {@link angular.attrMarkup Attribute Markup} -* {@link angular.module.NG.$filter Filters} - Angular output filters -* {@link angular.module.NG.$compile $compile} - Template compiler +* {@link angular.module.ng.$filter Filters} - Angular output filters +* {@link angular.module.ng.$compile $compile} - Template compiler ## Angular Scope API -* {@link angular.module.NG.$rootScope.Scope Scope Object} - Angular scope object +* {@link angular.module.ng.$rootScope.Scope Scope Object} - Angular scope object ## Angular Services & Dependency Injection API -* {@link angular.module.NG Angular Services} +* {@link angular.module.ng Angular Services} * {@link angular.injector angular.injector() } ## Angular Testing API -* {@link angular.module.NG_MOCK Testing Mocks API} - Mock objects for testing +* {@link angular.module.ngMock Testing Mocks API} - Mock objects for testing * {@link guide/dev_guide.e2e-testing Angular Scenario Runner} - Automated scenario testing documentation |
