aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Ford2013-09-26 13:59:37 -0700
committerBrian Ford2013-09-26 14:13:02 -0700
commiteea76a0ebe247685fef3b2111b941c8ddfff766c (patch)
tree9620b8eb589dd50affa78fc23f232e9a3e548f28
parent147c6929a264a7b077a5f2cfc5aa9a0b9513acd7 (diff)
downloadangular.js-eea76a0ebe247685fef3b2111b941c8ddfff766c.tar.bz2
docs(minerr): fix broken style from long line in nonassign
-rw-r--r--docs/content/error/compile/nonassign.ngdoc7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/content/error/compile/nonassign.ngdoc b/docs/content/error/compile/nonassign.ngdoc
index f3c4dd2c..792f88a1 100644
--- a/docs/content/error/compile/nonassign.ngdoc
+++ b/docs/content/error/compile/nonassign.ngdoc
@@ -23,8 +23,11 @@ myModule.directive('myDirective', function factory() {
Following are invalid uses of this directive:
```
-<my-directive bind="1+2"> <!-- ERROR because `1+2=localValue` is an invalid statement -->
-<my-directive bind="myFn()"> <!-- ERROR because `myFn()=localValue` is an invalid statement -->
+<!-- ERROR because `1+2=localValue` is an invalid statement -->
+<my-directive bind="1+2">
+
+<!-- ERROR because `myFn()=localValue` is an invalid statement -->
+<my-directive bind="myFn()">
```