summaryrefslogtreecommitdiff
path: root/src/PrePasses.ml
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/PrePasses.ml10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/PrePasses.ml b/src/PrePasses.ml
index cd14c398..a09ae476 100644
--- a/src/PrePasses.ml
+++ b/src/PrePasses.ml
@@ -14,13 +14,13 @@ let log = L.pre_passes_log
(** Rustc inserts a lot of drops before the assignments.
We consider those drops are part of the assignment, and splitting the
drop and the assignment is problematic for us because it can introduce
- ⊥ under borrows. For instance, we encountered situations like the
+ [⊥] under borrows. For instance, we encountered situations like the
following one:
- ```
- drop( *x ); // Illegal! Inserts a ⊥ under a borrow
- *x = move ...;
- ```
+ {[
+ drop( *x ); // Illegal! Inserts a ⊥ under a borrow
+ *x = move ...;
+ ]}
TODO: this is not necessary anymore
*)