Skip to content

Commit b7d13f7

Browse files
btfordjamesdaily
authored andcommitted
docs(minerr): fix broken style from long line in nonassign
1 parent 4133c1d commit b7d13f7

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

docs/content/error/compile/nonassign.ngdoc

+5-2
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,11 @@ myModule.directive('myDirective', function factory() {
2323

2424
Following are invalid uses of this directive:
2525
```
26-
<my-directive bind="1+2"> <!-- ERROR because `1+2=localValue` is an invalid statement -->
27-
<my-directive bind="myFn()"> <!-- ERROR because `myFn()=localValue` is an invalid statement -->
26+
<!-- ERROR because `1+2=localValue` is an invalid statement -->
27+
<my-directive bind="1+2">
28+
29+
<!-- ERROR because `myFn()=localValue` is an invalid statement -->
30+
<my-directive bind="myFn()">
2831
```
2932

3033

0 commit comments

Comments
 (0)