From 0e461f0c0741c06a6ad2151c2646e90a8ad584e0 Mon Sep 17 00:00:00 2001
From: Vojta Jina
Date: Sun, 12 Aug 2012 10:45:14 -0700
Subject: docs($compileProvider): remove duplicate of .directive()
---
src/ng/compile.js | 19 +++----------------
1 file changed, 3 insertions(+), 16 deletions(-)
(limited to 'src')
diff --git a/src/ng/compile.js b/src/ng/compile.js
index 5f444a30..31c1696c 100644
--- a/src/ng/compile.js
+++ b/src/ng/compile.js
@@ -149,20 +149,6 @@ var NON_ASSIGNABLE_MODEL_EXPRESSION = 'Non-assignable model expression: ';
*
* @description
*/
-
-/**
- * @ngdoc function
- * @name ng.$compileProvider#directive
- * @methodOf ng.$compileProvider
- * @function
- *
- * @description
- * Register a new directive with compiler
- *
- * @param {string} name name of the directive.
- * @param {function} directiveFactory An injectable directive factory function.
- * @returns {ng.$compileProvider} Self for chaining.
- */
$CompileProvider.$inject = ['$provide'];
function $CompileProvider($provide) {
var hasDirectives = {},
@@ -174,17 +160,18 @@ function $CompileProvider($provide) {
/**
* @ngdoc function
- * @name ng.$compileProvider.directive
+ * @name ng.$compileProvider#directive
* @methodOf ng.$compileProvider
* @function
*
* @description
- * Register directives with the compiler.
+ * Register a new directives with the compiler.
*
* @param {string} name Name of the directive in camel-case. (ie ngBind which will match as
* ng-bind).
* @param {function} directiveFactory An injectable directive factroy function. See {@link guide/directive} for more
* info.
+ * @returns {ng.$compileProvider} Self for chaining.
*/
this.directive = function registerDirective(name, directiveFactory) {
if (isString(name)) {
--
cgit v1.2.3