aboutsummaryrefslogtreecommitdiffstats
path: root/src/ng/compile.js
diff options
context:
space:
mode:
authorStéphane Reynaud2013-11-27 09:15:46 +0100
committerPete Bacon Darwin2013-11-27 23:20:09 +0000
commit1a15c01b649d868adfd655ec0790c2b2b4a5107d (patch)
tree14f972b70465b2270332ca48e11950fd71991be3 /src/ng/compile.js
parent7f33e1ca89c4127c4171510413c1ed8c7270a418 (diff)
downloadangular.js-1a15c01b649d868adfd655ec0790c2b2b4a5107d.tar.bz2
docs($compile): fix missing space
Diffstat (limited to 'src/ng/compile.js')
-rw-r--r--src/ng/compile.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ng/compile.js b/src/ng/compile.js
index 54d2dc9f..0963b8d5 100644
--- a/src/ng/compile.js
+++ b/src/ng/compile.js
@@ -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's parents. Throw an error if not found.
- * * `?^` - Attempt to locate the required controller by searching the element's parentsor pass `null` to the
+ * * `?^` - Attempt to locate the required controller by searching the element's parents or pass `null` to the
* `link` fn if not found.
*
*