aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/compile.js
diff options
context:
space:
mode:
authorDavid Bennett2013-09-23 21:45:48 -0400
committerBrian Ford2013-09-27 16:10:43 -0700
commit5bb9ba2c54b341aa9d6a26934831f5b72f24ddac (patch)
treef79a5027089db8743136481cdedcd8a6157c9e3d /src/ng/compile.js
parente5eeb2e825873977fe3a850f16a658b3783300a2 (diff)
downloadangular.js-5bb9ba2c54b341aa9d6a26934831f5b72f24ddac.tar.bz2
docs(angular.Module): fix controller and directive method parameters
Diffstat (limited to 'src/ng/compile.js')
-rw-r--r--src/ng/compile.js9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/ng/compile.js b/src/ng/compile.js
index 735e053a..c49fbe28 100644
--- a/src/ng/compile.js
+++ b/src/ng/compile.js
@@ -170,10 +170,11 @@ function $CompileProvider($provide) {
* @description
* Register a new directive 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|Array} directiveFactory An injectable directive factory function. See {@link guide/directive} for more
- * info.
+ * @param {string|Object} name Name of the directive in camel-case (i.e. <code>ngBind</code> which
+ * will match as <code>ng-bind</code>), or an object map of directives where the keys are the
+ * names and the values are the factories.
+ * @param {function|Array} directiveFactory An injectable directive factory function. See
+ * {@link guide/directive} for more info.
* @returns {ng.$compileProvider} Self for chaining.
*/
this.directive = function registerDirective(name, directiveFactory) {