Skip to content

Commit aca60d6

Browse files
Update docs/src/manual/types.md
Co-authored-by: Eric Hanson <[email protected]>
1 parent f1b6351 commit aca60d6

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
@@ -84,7 +84,9 @@ solve!(problem, SCS.Optimizer)
8484
# Once the problem is solved, we can call evaluate() on expr:
8585
evaluate(expr)
8686
```
87-
!!! warning 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.
87+
88+
!!! 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.
8890

8991
## Constraints
9092

0 commit comments

Comments
 (0)