Skip to content

Commit 006fb4f

Browse files
committed
docs(ngSanitize): fix directive links
1 parent 075c089 commit 006fb4f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/ng/directive/ngBind.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ var ngBindTemplateDirective = ['$interpolate', function($interpolate) {
121121
* @description
122122
* Creates a binding that will innerHTML the result of evaluating the `expression` into the current
123123
* element. *The innerHTML-ed content will not be sanitized!* You should use this directive only if
124-
* {@link angular.module.ng.$compileProvider.directive.ngBindHtml ngBindHtml} directive is too
124+
* {@link angular.module.ngSanitize.directive.ngBindHtml ngBindHtml} directive is too
125125
* restrictive and when you absolutely trust the source of the content you are binding to.
126126
*
127127
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.

src/ngSanitize/directive/ngBindHtml.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
1+
'use strict';
22

33

44
/**
@@ -7,10 +7,10 @@
77
*
88
* @description
99
* Creates a binding that will sanitize the result of evaluating the `expression` with the
10-
* {@link angular.module.ng.$sanitize $sanitize} service and innerHTML the result into the current
11-
* element.
10+
* {@link angular.module.ngSanitize.$sanitize $sanitize} service and innerHTML the result into the
11+
* current element.
1212
*
13-
* See {@link angular.module.ng.$sanitize $sanitize} docs for examples.
13+
* See {@link angular.module.ngSanitize.$sanitize $sanitize} docs for examples.
1414
*
1515
* @element ANY
1616
* @param {expression} ngBindHtml {@link guide/dev_guide.expressions Expression} to evaluate.

0 commit comments

Comments
 (0)