aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng
diff options
context:
space:
mode:
authorVojta Jina2012-08-12 10:45:14 -0700
committerVojta Jina2012-08-12 10:45:14 -0700
commit9be169365ce54a810c6e51a36f758b0eb195b290 (patch)
treef3997c9b30a6b123eed5ab03212c6e0f425dd8f8 /src/ng
parent00683a8bbbd14272ed994b96330c4c0306251741 (diff)
downloadangular.js-9be169365ce54a810c6e51a36f758b0eb195b290.tar.bz2
docs($compileProvider): remove duplicate of .directive()
Diffstat (limited to 'src/ng')
-rw-r--r--src/ng/compile.js19
1 files changed, 3 insertions, 16 deletions
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 <code>ngBind</code> which will match as
* <code>ng-bind</code>).
* @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)) {