docs(minerr): fix broken style from long line in nonassign

This commit is contained in:
Brian Ford 2013-09-26 13:59:37 -07:00
parent 147c6929a2
commit eea76a0ebe

View file

@ -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()">
```