diff options
| author | Misko Hevery | 2012-05-24 14:49:47 -0700 | 
|---|---|---|
| committer | Misko Hevery | 2012-06-02 16:02:08 -0700 | 
| commit | 0532aabcf97a08badd6ed67ad40453d37da89556 (patch) | |
| tree | 954f5f922b0c178c050321b26c484be468b52b8c | |
| parent | f0be543614d5c2c3f492e1ed73ec964bd8a3d381 (diff) | |
| download | angular.js-0532aabcf97a08badd6ed67ad40453d37da89556.tar.bz2 | |
doc(guide): clean up broken links
24 files changed, 53 insertions, 53 deletions
| diff --git a/docs/content/cookbook/form.ngdoc b/docs/content/cookbook/form.ngdoc index e7f87d7c..f746e327 100644 --- a/docs/content/cookbook/form.ngdoc +++ b/docs/content/cookbook/form.ngdoc @@ -108,8 +108,7 @@ allow a user to enter data.    is going on.  * The {@link api/angular.module.ng.$compileProvider.directive.input input directives} simply refer    to the model and are data-bound. -* The inputs {@link guide/dev_guide.forms validate}. (Try leaving them blank or entering non digits -  in the zip field) +* The inputs validate. (Try leaving them blank or entering non digits in the zip field)  * In your application you can simply read from or write to the model and the form will be updated.  * By clicking the 'add' link you are adding new items into the `user.contacts` array which are then    reflected in the view. diff --git a/docs/content/guide/bootstrap.ngdoc b/docs/content/guide/bootstrap.ngdoc index bd888b2d..997ec3af 100644 --- a/docs/content/guide/bootstrap.ngdoc +++ b/docs/content/guide/bootstrap.ngdoc @@ -49,14 +49,14 @@ initialization.  # Automatic Initialization  Angular initializes automatically upon `DOMContentLoaded` event, at which point angular looks for -the {@link api/angular.module.ng.$compileProvider.directive.ng:app `ng-app`} directive which +the {@link api/angular.module.ng.$compileProvider.directive.ngApp `ng-app`} directive which  designates your application root. If {@link  api/angular.module.ng.$compileProvider.directive.ng:app `ng-app`} directive is found then Angular  will:    * load the {@link guide/module module} associated with the directive.    * create the application {@link api/angular.module.AUTO.$injector injector} -  * compile the DOM treating the {@link api/angular.module.ng.$compileProvider.directive.ng:app +  * compile the DOM treating the {@link api/angular.module.ng.$compileProvider.directive.ngApp      `ng-app`} directive as the root of the compilation. This allows you to tell it to treat only a      portion of the DOM as an Angular application. @@ -82,7 +82,7 @@ or the need to perform an operation before the Angular compiles a page.  Here is an example of manually initializing Angular. The example is equivalent to using the {@link -api/angular.module.ng.$compileProvider.directive.ng:app ng:app} directive. +api/angular.module.ng.$compileProvider.directive.ngApp ng-app} directive.  <pre>  <!doctype html> diff --git a/docs/content/guide/compiler.ngdoc b/docs/content/guide/compiler.ngdoc index 90dc4d61..d854ea37 100644 --- a/docs/content/guide/compiler.ngdoc +++ b/docs/content/guide/compiler.ngdoc @@ -39,7 +39,7 @@ process happens into two phases.    scope model are reflected in the view, and any user interactions with the view are reflected    in the scope model. Making the scope model a single source of truth. -Some directives such {@link api/angular.module.ng.$compileProvider.directive.ng:repeat +Some directives such {@link api/angular.module.ng.$compileProvider.directive.ngRepeat  `ng-repeat`} clone DOM elements once for each item in collection. Having a compile and link phase  improves performance since the cloned template only needs to be compiled once, and then linked  once for each clone instance. @@ -50,7 +50,7 @@ once for each clone instance.  Directive is a behavior which should be triggered when specific HTML constructs are encountered in  compilation process. The directives can be placed in element names, attributes, class names, as  well as comments. Here are some equivalent examples of invoking {@link -api/angular.module.ng.$compileProvider.directive.ng:bind `ng-bind`} directive. +api/angular.module.ng.$compileProvider.directive.ngBind `ng-bind`} directive.  <pre>    <span ng-bind="exp"></span> diff --git a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc index cfe223c6..ce3c74e3 100644 --- a/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc +++ b/docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc @@ -58,7 +58,7 @@ Putting any presentation logic into controllers significantly affects testabilit  logic. Angular offers {@link dev_guide.templates.databinding} for automatic DOM manipulation. If  you have to perform your own manual DOM manipulation, encapsulate the presentation logic in  {@link guide/directive directives}. -- Input formatting — Use {@link dev_guide.forms angular form controls} instead. +- Input formatting — Use {@link forms angular form controls} instead.  - Output filtering — Use {@link dev_guide.templates.filters angular filters} instead.  - Run stateless or stateful code shared across controllers — Use {@link dev_guide.services angular  services} instead. diff --git a/docs/content/guide/dev_guide.mvc.understanding_model.ngdoc b/docs/content/guide/dev_guide.mvc.understanding_model.ngdoc index b8c08198..1853e385 100644 --- a/docs/content/guide/dev_guide.mvc.understanding_model.ngdoc +++ b/docs/content/guide/dev_guide.mvc.understanding_model.ngdoc @@ -26,7 +26,7 @@ occurs in controllers:               $scope.foo = 'bar';           } -* Use an {@link dev_guide.expressions angular expression} with an assignment operator in templates: +* Use an {@link expression angular expression} with an assignment operator in templates:           <button ng-click="{{foos='ball'}}">Click me</button> diff --git a/docs/content/guide/dev_guide.services.creating_services.ngdoc b/docs/content/guide/dev_guide.services.creating_services.ngdoc index 67471cdd..891b4dd0 100644 --- a/docs/content/guide/dev_guide.services.creating_services.ngdoc +++ b/docs/content/guide/dev_guide.services.creating_services.ngdoc @@ -49,7 +49,7 @@ create this instance when called.  # Dependencies  Services can not only be depended upon, but also have its own dependencies. These can be specified -as arguments of the factory function. {@link di.understanding_di Read more} about the DI +as arguments of the factory function. {@link di Read more} about the DI  in Angular and the use of array notation and $inject property to make DI annotation  minification-proof. diff --git a/docs/content/guide/dev_guide.templates.css-styling.ngdoc b/docs/content/guide/dev_guide.templates.css-styling.ngdoc index 30250bea..1a2b2ac5 100644 --- a/docs/content/guide/dev_guide.templates.css-styling.ngdoc +++ b/docs/content/guide/dev_guide.templates.css-styling.ngdoc @@ -20,4 +20,4 @@ Angular sets these CSS classes. It is up to your application to provide useful s  ## Related Topics  * {@link dev_guide.templates Angular Templates} -* {@link dev_guide.forms Angular Forms} +* {@link forms Angular Forms} diff --git a/docs/content/guide/dev_guide.templates.filters.creating_filters.ngdoc b/docs/content/guide/dev_guide.templates.filters.creating_filters.ngdoc index 1a389e3c..9ec6fdab 100644 --- a/docs/content/guide/dev_guide.templates.filters.creating_filters.ngdoc +++ b/docs/content/guide/dev_guide.templates.filters.creating_filters.ngdoc @@ -59,7 +59,7 @@ text upper-case and assigns color.  ## Related Topics  * {@link dev_guide.templates.filters Understanding Angular Filters} -* {@link dev_guide.compiler Angular HTML Compiler} +* {@link compiler Angular HTML Compiler}  ## Related API diff --git a/docs/content/guide/dev_guide.templates.ngdoc b/docs/content/guide/dev_guide.templates.ngdoc index b5f6dade..f0c0f280 100644 --- a/docs/content/guide/dev_guide.templates.ngdoc +++ b/docs/content/guide/dev_guide.templates.ngdoc @@ -15,14 +15,14 @@ These are the types of angular elements and element attributes you can use in a  * {@link api/angular.module.ng.$interpolate  Markup} — The double  curly brace notation `{{ }}` to bind expressions to elements is built-in angular markup.  * {@link dev_guide.templates.filters Filter} — Formats your data for display to the user. -* {@link dev_guide.forms Form controls} — Lets you validate user input. +* {@link forms Form controls} — Lets you validate user input.  Note:  In addition to declaring the elements above in templates, you can also access these elements  in JavaScript code.  The following code snippet shows a simple angular template made up of standard HTML tags along with  angular {@link guide/directive directives} and curly-brace bindings -with {@link dev_guide.expressions expressions}: +with {@link expression expressions}:  <pre>  <html ng-app> @@ -50,7 +50,7 @@ eight.  ## Related Topics  * {@link dev_guide.templates.filters Angular Filters} -* {@link dev_guide.forms Angular Forms} +* {@link forms Angular Forms}  ## Related API diff --git a/docs/content/guide/directive.ngdoc b/docs/content/guide/directive.ngdoc index 5e50dca5..b05aae12 100644 --- a/docs/content/guide/directive.ngdoc +++ b/docs/content/guide/directive.ngdoc @@ -1,5 +1,5 @@  @ngdoc overview -@name directive +@name Directives  @description  Directives are a way to teach HTML new tricks. During DOM compilation directives are matched diff --git a/docs/content/guide/index.ngdoc b/docs/content/guide/index.ngdoc index 04b02a49..158bb756 100644 --- a/docs/content/guide/index.ngdoc +++ b/docs/content/guide/index.ngdoc @@ -30,7 +30,7 @@ of the following documents before returning here to the Developer Guide:  ## {@link dev_guide.templates Angular Templates}  * {@link dev_guide.templates.filters Understanding Angular Filters} -* {@link dev_guide.forms Understanding Angular Forms} +* {@link forms Understanding Angular Forms}  ## {@link dev_guide.services Angular Services} diff --git a/docs/content/guide/scope.ngdoc b/docs/content/guide/scope.ngdoc index 1946e7d8..4d104b8c 100644 --- a/docs/content/guide/scope.ngdoc +++ b/docs/content/guide/scope.ngdoc @@ -164,7 +164,7 @@ where the `department` property is defined.  Scopes are attached to the DOM as `$scope` data property, and can be retrieved for debugging  purposes. (It is unlikely that one would need to retrieve scopes in this way inside the  application.) The location where the root scope is attached to the DOM is defined by the location -of {@link api/angular.module.ng.$compileProvider.directive.ng:app `ng-app`} directive. Typically +of {@link api/angular.module.ng.$compileProvider.directive.ngApp `ng-app`} directive. Typically  `ng-app` is placed an the `<html>` element, but it can be placed on other elements as well, if,  for example, only a portion of the view needs to be controlled by angular. @@ -228,7 +228,7 @@ modifications the execution has to enter the Angular execution context using the  api/angular.module.ng.$rootScope.Scope#$apply `$apply`} method. Only model modifications which  execute inside the `$apply` method will be properly accounted for by Angular. For example if a  directive listens on DOM events, such as {@link -api/angular.module.ng.$compileProvider.directive.ng:click `ng-click`} it must evaluate the +api/angular.module.ng.$compileProvider.directive.ngClick `ng-click`} it must evaluate the  expression inside the `$apply` method.  After evaluating the expression `$apply` method performs a {@link @@ -287,8 +287,8 @@ usually fall into one of two categories:      api/angular.module.ng.$rootScope.Scope#$watch $watch()} method. This type of directive needs      to be notified whenever the expression changes so that it can update the view. -  - Listener directives, such as {@link api/angular.module.ng.$compileProvider.directive.ng:click -    ng:click}, register a listener with the DOM. When the DOM listener fires, the directive +  - Listener directives, such as {@link api/angular.module.ng.$compileProvider.directive.ngClick +    ng-click}, register a listener with the DOM. When the DOM listener fires, the directive      executes the associated expression and updates the view using the {@link      api/angular.module.ng.$rootScope.Scope#$apply $apply()} method. @@ -301,8 +301,8 @@ correctly.  In most cases, {@link api/angular.module.ng.$compileProvider.directive directives} and scopes interact  but do not create new instances of scope. However, some directives, such as {@link -api/angular.module.ng.$compileProvider.directive.ng:controller ng:controller} and {@link -api/angular.module.ng.$compileProvider.directive.ng:repeat ng:repeat}, create new child scopes +api/angular.module.ng.$compileProvider.directive.ngController ng-controller} and {@link +api/angular.module.ng.$compileProvider.directive.ngRepeat ng-repeat}, create new child scopes  and attach the child scope to the corresponding DOM element. You can retrieve a scope for any DOM  element by using an `angular.element(aDomElement).scope()` method call. @@ -311,14 +311,15 @@ element by using an `angular.element(aDomElement).scope()` method call.  Scopes and controllers interact with each other in the following situations:     - Controllers use scopes to expose controller methods to templates (see {@link -     api/angular.module.ng.$compileProvider.directive.ng:controller ng:controller}). +     api/angular.module.ng.$compileProvider.directive.ngController ng-controller}).     - Controllers define methods (behavior) that can mutate the model (properties on the scope).     - Controllers may register {@link api/angular.module.ng.$rootScope.Scope#$watch watches} on       the model. These watches execute immediately after the controller behavior executes. -See the {@link controller controller documentation} for more information. +See the {@link api/angular.module.ng.$compileProvider.directive.ngController ng-controller} for more +information.  ### Scope `$watch` Performance Considerations diff --git a/docs/content/tutorial/step_00.ngdoc b/docs/content/tutorial/step_00.ngdoc index 714f983e..b6a367e9 100644 --- a/docs/content/tutorial/step_00.ngdoc +++ b/docs/content/tutorial/step_00.ngdoc @@ -200,7 +200,7 @@ being the element on which the `ngApp` directive was defined.    binding will result in efficient continuous updates whenever the result of the expression    evaluation changes. -  {@link guide/dev_guide.expressions Angular expression} is a JavaScript-like code snippet that is +  {@link guide/expression Angular expression} is a JavaScript-like code snippet that is    evaluated by Angular in the context of the current model scope, rather than within the scope of    the global context (`window`). @@ -211,7 +211,7 @@ being the element on which the `ngApp` directive was defined.  Bootstrapping AngularJS apps automatically using the `ngApp` directive is very easy and suitable  for most cases. In advanced cases, such as when using script loaders, you can use -{@link guide/dev_guide.bootstrap.manual_bootstrap imperative / manual way} to bootstrap the app. +{@link guide/bootstrap imperative / manual way} to bootstrap the app.  There are 3 important things that happen during the app bootstrap: diff --git a/docs/content/tutorial/step_02.ngdoc b/docs/content/tutorial/step_02.ngdoc index bf7dc661..03c7a852 100644 --- a/docs/content/tutorial/step_02.ngdoc +++ b/docs/content/tutorial/step_02.ngdoc @@ -53,7 +53,7 @@ __`app/index.html`:__  We replaced the hard-coded phone list with the  {@link api/angular.module.ng.$compileProvider.directive.ngRepeat ngRepeat directive} and two -{@link guide/dev_guide.expressions Angular expressions} enclosed in curly braces: +{@link guide/expression Angular expressions} enclosed in curly braces:  `{{phone.name}}` and `{{phone.snippet}}`:  * The `ng-repeat="phone in phones"` statement in the `<li>` tag is an Angular repeater. The diff --git a/docs/content/tutorial/step_05.ngdoc b/docs/content/tutorial/step_05.ngdoc index 321f60c3..e0e6c1fe 100644 --- a/docs/content/tutorial/step_05.ngdoc +++ b/docs/content/tutorial/step_05.ngdoc @@ -7,7 +7,7 @@  Enough of building an app with three phones in a hard-coded dataset! Let's fetch a larger dataset  from our server using one of angular's built-in {@link api/angular.module.ng services} called {@link -api/angular.module.ng.$http $http}. We will use angular's {@link guide/dev_guide.di dependency +api/angular.module.ng.$http $http}. We will use angular's {@link guide/di dependency  injection (DI)} to provide the service to the `PhoneListCtrl` controller. @@ -47,7 +47,7 @@ request to your web server to fetch the data in the `app/phones/phones.json` fil  one of several built-in {@link api/angular.module.ng angular services} that handle common operations  in web apps. Angular injects these services for you where you need them. -Services are managed by angular's {@link guide/dev_guide.di DI subsystem}. Dependency injection +Services are managed by angular's {@link guide/di DI subsystem}. Dependency injection  helps to make your web apps both well-structured (e.g., separate components for presentation, data,  and control) and loosely coupled (dependencies between components are not resolved by the  components themselves, but by the DI subsystem). diff --git a/src/ng/directive/ngBind.js b/src/ng/directive/ngBind.js index f27bd311..f6ae6324 100644 --- a/src/ng/directive/ngBind.js +++ b/src/ng/directive/ngBind.js @@ -22,7 +22,7 @@   *   *   * @element ANY - * @param {expression} ngBind {@link guide/dev_guide.expressions Expression} to evaluate. + * @param {expression} ngBind {@link guide/expression Expression} to evaluate.   *   * @example   * Enter a name in the Live Preview text box; the greeting below the text box changes instantly. @@ -127,7 +127,7 @@ var ngBindTemplateDirective = ['$interpolate', function($interpolate) {   * See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.   *   * @element ANY - * @param {expression} ngBindHtmlUnsafe {@link guide/dev_guide.expressions Expression} to evaluate. + * @param {expression} ngBindHtmlUnsafe {@link guide/expression Expression} to evaluate.   */  var ngBindHtmlUnsafeDirective = [function() {    return function(scope, element, attr) { diff --git a/src/ng/directive/ngClass.js b/src/ng/directive/ngClass.js index 7e0d5dba..9beed351 100644 --- a/src/ng/directive/ngClass.js +++ b/src/ng/directive/ngClass.js @@ -31,7 +31,7 @@ function classDirective(name, selector) {   * new classes are added.   *   * @element ANY - * @param {expression} ngClass {@link guide/dev_guide.expressions Expression} to eval. The result + * @param {expression} ngClass {@link guide/expression Expression} to eval. The result   *   of the evaluation can be a string representing space delimited class   *   names, an array, or a map of class names to boolean values.   * @@ -81,7 +81,7 @@ var ngClassDirective = classDirective('', true);   * {@link angular.module.ng.$compileProvider.directive.ngRepeat ngRepeat}.   *   * @element ANY - * @param {expression} ngClassOdd {@link guide/dev_guide.expressions Expression} to eval. The result + * @param {expression} ngClassOdd {@link guide/expression Expression} to eval. The result   *   of the evaluation can be a string representing space delimited class names or an array.   *   * @example @@ -128,7 +128,7 @@ var ngClassOddDirective = classDirective('Odd', 0);   * {@link angular.module.ng.$compileProvider.directive.ngRepeat ngRepeat}.   *   * @element ANY - * @param {expression} ngClassEven {@link guide/dev_guide.expressions Expression} to eval. The + * @param {expression} ngClassEven {@link guide/expression Expression} to eval. The   *   result of the evaluation can be a string representing space delimited class names or an array.   *   * @example diff --git a/src/ng/directive/ngController.js b/src/ng/directive/ngController.js index 72bd3c00..7b7ab06c 100644 --- a/src/ng/directive/ngController.js +++ b/src/ng/directive/ngController.js @@ -21,7 +21,7 @@   * @element ANY   * @scope   * @param {expression} ngController Name of a globally accessible constructor function or an - *     {@link guide/dev_guide.expressions expression} that on the current scope evaluates to a + *     {@link guide/expression expression} that on the current scope evaluates to a   *     constructor function.   *   * @example diff --git a/src/ng/directive/ngEventDirs.js b/src/ng/directive/ngEventDirs.js index 52375920..16635e07 100644 --- a/src/ng/directive/ngEventDirs.js +++ b/src/ng/directive/ngEventDirs.js @@ -9,7 +9,7 @@   * element is clicked.   *   * @element ANY - * @param {expression} ngClick {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngClick {@link guide/expression Expression} to evaluate upon   * click. (Event object is available as `$event`)   *   * @example @@ -61,7 +61,7 @@ forEach(   * The `ngDblclick` directive allows you to specify custom behavior on dblclick event.   *   * @element ANY - * @param {expression} ngDblclick {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngDblclick {@link guide/expression Expression} to evaluate upon   * dblclick. (Event object is available as `$event`)   *   * @example @@ -77,7 +77,7 @@ forEach(   * The ngMousedown directive allows you to specify custom behavior on mousedown event.   *   * @element ANY - * @param {expression} ngMousedown {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMousedown {@link guide/expression Expression} to evaluate upon   * mousedown. (Event object is available as `$event`)   *   * @example @@ -93,7 +93,7 @@ forEach(   * Specify custom behavior on mouseup event.   *   * @element ANY - * @param {expression} ngMouseup {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMouseup {@link guide/expression Expression} to evaluate upon   * mouseup. (Event object is available as `$event`)   *   * @example @@ -108,7 +108,7 @@ forEach(   * Specify custom behavior on mouseover event.   *   * @element ANY - * @param {expression} ngMouseover {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMouseover {@link guide/expression Expression} to evaluate upon   * mouseover. (Event object is available as `$event`)   *   * @example @@ -124,7 +124,7 @@ forEach(   * Specify custom behavior on mouseenter event.   *   * @element ANY - * @param {expression} ngMouseenter {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMouseenter {@link guide/expression Expression} to evaluate upon   * mouseenter. (Event object is available as `$event`)   *   * @example @@ -140,7 +140,7 @@ forEach(   * Specify custom behavior on mouseleave event.   *   * @element ANY - * @param {expression} ngMouseleave {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMouseleave {@link guide/expression Expression} to evaluate upon   * mouseleave. (Event object is available as `$event`)   *   * @example @@ -156,7 +156,7 @@ forEach(   * Specify custom behavior on mousemove event.   *   * @element ANY - * @param {expression} ngMousemove {@link guide/dev_guide.expressions Expression} to evaluate upon + * @param {expression} ngMousemove {@link guide/expression Expression} to evaluate upon   * mousemove. (Event object is available as `$event`)   *   * @example @@ -175,7 +175,7 @@ forEach(   * server and reloading the current page).   *   * @element form - * @param {expression} ngSubmit {@link guide/dev_guide.expressions Expression} to eval. + * @param {expression} ngSubmit {@link guide/expression Expression} to eval.   *   * @example     <doc:example> diff --git a/src/ng/directive/ngInit.js b/src/ng/directive/ngInit.js index 1fc1c96a..73354765 100644 --- a/src/ng/directive/ngInit.js +++ b/src/ng/directive/ngInit.js @@ -9,7 +9,7 @@   *  before the template enters execution mode during bootstrap.   *   * @element ANY - * @param {expression} ngInit {@link guide/dev_guide.expressions Expression} to eval. + * @param {expression} ngInit {@link guide/expression Expression} to eval.   *   * @example     <doc:example> diff --git a/src/ng/directive/ngPluralize.js b/src/ng/directive/ngPluralize.js index ec5b24f4..bf45645f 100644 --- a/src/ng/directive/ngPluralize.js +++ b/src/ng/directive/ngPluralize.js @@ -9,7 +9,7 @@   * # Overview   * `ngPluralize` is a directive that displays messages according to en-US localization rules.   * These rules are bundled with angular.js and the rules can be overridden - * (see {@link guide/dev_guide.i18n Angular i18n} dev guide). You configure ngPluralize directive + * (see {@link guide/i18n Angular i18n} dev guide). You configure ngPluralize directive   * by specifying the mappings between   * {@link http://unicode.org/repos/cldr-tmp/trunk/diff/supplemental/language_plural_rules.html   * plural categories} and the strings to be displayed. @@ -28,8 +28,8 @@   * You configure ngPluralize by providing 2 attributes: `count` and `when`.   * You can also provide an optional attribute, `offset`.   * - * The value of the `count` attribute can be either a string or an {@link guide/dev_guide.expressions - * Angular expression}; these are evaluated on the current scope for its binded value. + * The value of the `count` attribute can be either a string or an {@link guide/expression + * Angular expression}; these are evaluated on the current scope for its bound value.   *   * The `when` attribute specifies the mappings between plural categories and the actual   * string to be displayed. The value of the attribute should be a JSON object so that Angular diff --git a/src/ng/directive/ngShowHide.js b/src/ng/directive/ngShowHide.js index df6bc243..56197b21 100644 --- a/src/ng/directive/ngShowHide.js +++ b/src/ng/directive/ngShowHide.js @@ -9,7 +9,7 @@   * conditionally.   *   * @element ANY - * @param {expression} ngShow If the {@link guide/dev_guide.expressions expression} is truthy + * @param {expression} ngShow If the {@link guide/expression expression} is truthy   *     then the element is shown or hidden respectively.   *   * @example @@ -49,7 +49,7 @@ var ngShowDirective = ngDirective(function(scope, element, attr){   * of the HTML conditionally.   *   * @element ANY - * @param {expression} ngHide If the {@link guide/dev_guide.expressions expression} truthy then + * @param {expression} ngHide If the {@link guide/expression expression} truthy then   *     the element is shown or hidden respectively.   *   * @example diff --git a/src/ng/directive/ngStyle.js b/src/ng/directive/ngStyle.js index 30a266cd..08b99ac4 100644 --- a/src/ng/directive/ngStyle.js +++ b/src/ng/directive/ngStyle.js @@ -8,7 +8,7 @@   * The `ngStyle` directive allows you to set CSS style on an HTML element conditionally.   *   * @element ANY - * @param {expression} ngStyle {@link guide/dev_guide.expressions Expression} which evals to an + * @param {expression} ngStyle {@link guide/expression Expression} which evals to an   *      object whose keys are CSS style names and values are corresponding values for those CSS   *      keys.   * diff --git a/src/ngSanitize/directive/ngBindHtml.js b/src/ngSanitize/directive/ngBindHtml.js index d8ec4a41..8141dd63 100644 --- a/src/ngSanitize/directive/ngBindHtml.js +++ b/src/ngSanitize/directive/ngBindHtml.js @@ -12,7 +12,7 @@   * See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.   *   * @element ANY - * @param {expression} ngBindHtml {@link guide/dev_guide.expressions Expression} to evaluate. + * @param {expression} ngBindHtml {@link guide/expression Expression} to evaluate.   */  angular.module('ngSanitize').directive('ngBindHtml', ['$sanitize', function($sanitize) {    return function(scope, element, attr) { | 
