Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit eea76a0

Browse files
committed
docs(minerr): fix broken style from long line in nonassign
1 parent 147c692 commit eea76a0

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)