From 04940d5c9d46f62f282ee614e07b8bd4f258adf0 Mon Sep 17 00:00:00 2001 From: mLuby Date: Tue, 13 Oct 2015 15:53:16 -0700 Subject: [PATCH] docs(error/ctreq): typofix --- docs/content/error/$compile/ctreq.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/$compile/ctreq.ngdoc b/docs/content/error/$compile/ctreq.ngdoc index d222a1bdc65f..8aedd10a38c5 100644 --- a/docs/content/error/$compile/ctreq.ngdoc +++ b/docs/content/error/$compile/ctreq.ngdoc @@ -8,7 +8,7 @@ but the required directive controller is not present on the current DOM element To resolve this error ensure that there is no typo in the required controller name and that the required directive controller is present on the current element. -If the required controller is expected to be on a ancestor element, make sure that you prefix the controller name in the `require` definition with `^`. +If the required controller is expected to be on an ancestor element, make sure that you prefix the controller name in the `require` definition with `^`. If the required controller is optionally requested, use `?` or `^?` to specify that.