docs($compile): fix documentation for ?^ controller search

Fixed typo: 'parents parents' to 'parents'

Closes #8690
This commit is contained in:
Izhaki
2014-08-20 14:28:58 +01:00
committed by Caitlin Potter
parent c6e4defcb6
commit ec27deacfd

View File

@@ -192,7 +192,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.
*
*