Skip to content

Commit 5ba793a

Browse files
docs(stateDirectives): fix @links in docs
1 parent ec6ca36 commit 5ba793a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/stateDirectives.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ function defaultOpts(el, $state) {
7474
* to the state that the link lives in, in other words the state that loaded the
7575
* template containing the link.
7676
*
77-
* You can specify options to pass to {@link ui.router.state.$state#go $state.go()}
77+
* You can specify options to pass to {@link ui.router.state.$state#methods_go $state.go()}
7878
* using the `ui-sref-opts` attribute. Options are restricted to `location`, `inherit`,
7979
* and `reload`.
8080
*
@@ -111,7 +111,7 @@ function defaultOpts(el, $state) {
111111
* </pre>
112112
*
113113
* @param {string} ui-sref 'stateName' can be any valid absolute or relative state
114-
* @param {Object} ui-sref-opts options to pass to {@link ui.router.state.$state#go $state.go()}
114+
* @param {Object} ui-sref-opts options to pass to {@link ui.router.state.$state#methods_go $state.go()}
115115
*/
116116
$StateRefDirective.$inject = ['$state', '$timeout'];
117117
function $StateRefDirective($state, $timeout) {
@@ -159,8 +159,8 @@ function $StateRefDirective($state, $timeout) {
159159
* params and override options.
160160
*
161161
* @param {string} ui-state 'stateName' can be any valid absolute or relative state
162-
* @param {Object} ui-state-params params to pass to {@link ui.router.state.$state#href $state.href()}
163-
* @param {Object} ui-state-opts options to pass to {@link ui.router.state.$state#go $state.go()}
162+
* @param {Object} ui-state-params params to pass to {@link ui.router.state.$state#methods_href $state.href()}
163+
* @param {Object} ui-state-opts options to pass to {@link ui.router.state.$state#methods_go $state.go()}
164164
*/
165165
$StateRefDynamicDirective.$inject = ['$state', '$timeout'];
166166
function $StateRefDynamicDirective($state, $timeout) {

src/viewDirective.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ var ngMinorVer = angular.version.minor;
5151
* })
5252
* </pre>
5353
*
54-
* The above is a convenient shortcut equivalent to specifying your view explicitly with the {@link ui.router.state.$stateProvider#views `views`}
54+
* The above is a convenient shortcut equivalent to specifying your view explicitly with the {@link ui.router.state.$stateProvider#methods_state `views`}
5555
* config property, by name, in this case an empty name:
5656
* <pre>
5757
* $stateProvider.state("home", {

0 commit comments

Comments
 (0)