From 4bab3d8227653eaf18c8556dd25287f57f19a861 Mon Sep 17 00:00:00 2001 From: Sekib Omazic Date: Fri, 7 Mar 2014 23:56:07 +0100 Subject: [PATCH] docs($sce): correct typo `consititute` -> `constitute` Typo fixed Closes #6607 --- src/ng/sce.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/sce.js b/src/ng/sce.js index 612edd1222a0..0f60521b26bd 100644 --- a/src/ng/sce.js +++ b/src/ng/sce.js @@ -521,7 +521,7 @@ function $SceDelegateProvider() { * |---------------------|----------------| * | `$sce.HTML` | For HTML that's safe to source into the application. The {@link ng.directive:ngBindHtml ngBindHtml} directive uses this context for bindings. | * | `$sce.CSS` | For CSS that's safe to source into the application. Currently unused. Feel free to use it in your own directives. | - * | `$sce.URL` | For URLs that are safe to follow as links. Currently unused (`
Note that `$sce.RESOURCE_URL` makes a stronger statement about the URL than `$sce.URL` does and therefore contexts requiring values trusted for `$sce.RESOURCE_URL` can be used anywhere that values trusted for `$sce.URL` are required. | * | `$sce.JS` | For JavaScript that is safe to execute in your application's context. Currently unused. Feel free to use it in your own directives. | *