Fix links in docs

This commit is contained in:
Vojta Jina 2011-05-18 14:16:09 +02:00 committed by Igor Minar
parent 7fe46e8d7e
commit e21a868524
4 changed files with 8 additions and 8 deletions

View file

@ -120,10 +120,10 @@ function errorHandlerFor(element, error) {
* - Scopes can be attached (bound) to the HTML DOM tree (the view). * - Scopes can be attached (bound) to the HTML DOM tree (the view).
* - A scope {@link angular.scope.$become becomes} `this` for a controller. * - A scope {@link angular.scope.$become becomes} `this` for a controller.
* - A scope's {@link angular.scope.$eval $eval} is used to update its view. * - A scope's {@link angular.scope.$eval $eval} is used to update its view.
* - Scopes can {@link angular.scope.$watch watch} properties and fire events. * - Scopes can {@link angular.scope.$watch $watch} properties and fire events.
* *
* # Basic Operations * # Basic Operations
* Scopes can be created by calling {@link angular.scope() angular.scope()} or by compiling HTML. * Scopes can be created by calling {@link angular.scope angular.scope()} or by compiling HTML.
* *
* {@link angular.widget Widgets} and data bindings register listeners on the current scope to be * {@link angular.widget Widgets} and data bindings register listeners on the current scope to be
* notified of changes to the scope state. When notified, these listeners push the updated state * notified of changes to the scope state. When notified, these listeners push the updated state
@ -206,7 +206,7 @@ function errorHandlerFor(element, error) {
* This example demonstrates scope inheritance and property overriding. * This example demonstrates scope inheritance and property overriding.
* *
* In this example, the root scope encompasses the whole HTML DOM tree. This scope has `salutation`, * In this example, the root scope encompasses the whole HTML DOM tree. This scope has `salutation`,
* `name`, and `names` properties. The {@link angular.widget@ng:repeat ng:repeat} creates a child * `name`, and `names` properties. The {@link angular.widget.@ng:repeat ng:repeat} creates a child
* scope, one for each element in the names array. The repeater also assigns $index and name into * scope, one for each element in the names array. The repeater also assigns $index and name into
* the child scope. * the child scope.
* *
@ -390,7 +390,7 @@ function createScope(parent, providers, instanceCache) {
* *
* @description * @description
* Evaluates the expression in the context of the current scope just like * Evaluates the expression in the context of the current scope just like
* {@link angular.scope.$eval()} with expression parameter, but also wraps it in a try/catch * {@link angular.scope.$eval} with expression parameter, but also wraps it in a try/catch
* block. * block.
* *
* If an exception is thrown then `exceptionHandler` is used to handle the exception. * If an exception is thrown then `exceptionHandler` is used to handle the exception.

View file

@ -7,9 +7,9 @@
* @requires $updateView * @requires $updateView
* *
* @description * @description
* Delegates to {@link angular.service.$browser.defer $browser.defer}, but wraps the `fn` function * Delegates to {@link angular.service.$browser $browser.defer}, but wraps the `fn` function
* into a try/catch block and delegates any exceptions to * into a try/catch block and delegates any exceptions to
* {@link angular.services.$exceptionHandler $exceptionHandler} service. * {@link angular.service.$exceptionHandler $exceptionHandler} service.
* *
* In tests you can use `$browser.defer.flush()` to flush the queue of deferred functions. * In tests you can use `$browser.defer.flush()` to flush the queue of deferred functions.
* *

View file

@ -33,7 +33,7 @@
* without angular knowledge and you may need to call '$updateView()' directly. * without angular knowledge and you may need to call '$updateView()' directly.
* *
* NOTE: if you wish to update the view immediately (without delay), you can do so by calling * NOTE: if you wish to update the view immediately (without delay), you can do so by calling
* {@link scope.$eval} at any time from your code: * {@link angular.scope.$eval} at any time from your code:
* <pre>scope.$root.$eval()</pre> * <pre>scope.$root.$eval()</pre>
* *
* In unit-test mode the update is instantaneous and synchronous to simplify writing tests. * In unit-test mode the update is instantaneous and synchronous to simplify writing tests.

View file

@ -1026,7 +1026,7 @@ angularWidget("@ng:non-bindable", noop);
* Every time the current route changes, the included view changes with it according to the * Every time the current route changes, the included view changes with it according to the
* configuration of the `$route` service. * configuration of the `$route` service.
* *
* This widget provides functionality similar to {@link angular.service.ng:include ng:include} when * This widget provides functionality similar to {@link angular.widget.ng:include ng:include} when
* used like this: * used like this:
* *
* <ng:include src="$route.current.template" scope="$route.current.scope"></ng:include> * <ng:include src="$route.current.template" scope="$route.current.scope"></ng:include>