From 60e6ef3cda63a7eac075d2fd83742f53e24b7048 Mon Sep 17 00:00:00 2001 From: Izhaki Date: Wed, 20 Aug 2014 14:28:58 +0100 Subject: [PATCH] docs($compile): fix documentation for ?^ controller search docs($compile): fix documentation for ?^ controller search Fixed typo: 'parents parents' to 'parents' --- src/ng/compile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ng/compile.js b/src/ng/compile.js index bbcd0f7d9a82..950c036ecd4d 100644 --- a/src/ng/compile.js +++ b/src/ng/compile.js @@ -199,7 +199,7 @@ * * (no prefix) - Locate the required controller on the current element. Throw an error if not found. * * `?` - Attempt to locate the required controller or pass `null` to the `link` fn if not found. * * `^` - Locate the required controller by searching the element and its parents. Throw an error if not found. - * * `?^` - Attempt to locate the required controller by searching the element and its parents parents or pass + * * `?^` - Attempt to locate the required controller by searching the element and its parents or pass * `null` to the `link` fn if not found. * *