From 9bea345b2481537fc73a5b2087824b4faa626f11 Mon Sep 17 00:00:00 2001 From: Oscar Busk Date: Thu, 3 May 2018 13:07:35 +0200 Subject: [PATCH] docs(guide/Components): add link to documentation for component method --- docs/content/guide/component.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/component.ngdoc b/docs/content/guide/component.ngdoc index 6d378ee51997..d056f736c2cb 100644 --- a/docs/content/guide/component.ngdoc +++ b/docs/content/guide/component.ngdoc @@ -25,7 +25,7 @@ When not to use Components: ## Creating and configuring a Component -Components can be registered using the `.component()` method of an AngularJS module (returned by {@link module `angular.module()`}). The method takes two arguments: +Components can be registered using the {@link ng.$compileProvider#component `.component()`} method of an AngularJS module (returned by {@link module `angular.module()`}). The method takes two arguments: * The name of the Component (as string). * The Component config object. (Note that, unlike the `.directive()` method, this method does **not** take a factory function.)