Skip to content

Commit ae25d89

Browse files
authored
Update docs/src/manual/types.md
1 parent aca60d6 commit ae25d89

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/src/manual/types.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,9 @@ evaluate(expr)
8686
```
8787

8888
!!! warning
89-
Julia's broadcasting, using the `.` operator should be avoided. The expression `-log(1.0 .+ A * x)` will fail while `-log(1.0 + A * x)` will be correctly encoded.
89+
Avoid using Julia's broadcasting (the `.` operator). As an example, the
90+
expression `-log(1.0 .+ A * x)` will fail while `-log(1.0 + A * x)` will
91+
succeed.
9092

9193
## Constraints
9294

0 commit comments

Comments
 (0)