diff --git a/src/ngSanitize/sanitize.js b/src/ngSanitize/sanitize.js index 04eafa0d..30de2231 100644 --- a/src/ngSanitize/sanitize.js +++ b/src/ngSanitize/sanitize.js @@ -4,6 +4,25 @@ * @ngdoc overview * @name ngSanitize * @description + * + * The `ngSanitize` module provides functionality to sanitize HTML. + * + * # Installation + * As a separate module, it must be loaded after Angular core is loaded; otherwise, an 'Uncaught Error: + * No module: ngSanitize' runtime error will occur. + * + *
+ * + * + *+ * + * # Usage + * To make sure the module is available to your application, declare it as a dependency of you application + * module. + * + *
+ * angular.module('app', ['ngSanitize']);
+ *
*/
/*