summaryrefslogtreecommitdiff
path: root/compiler
diff options
context:
space:
mode:
authorSon HO2024-04-11 10:54:12 +0200
committerGitHub2024-04-11 10:54:12 +0200
commitc63284e3f9d7723b24f2d226355747e91ebb06aa (patch)
treee68d5f36fee075e09f96d9692e8072ec5c904192 /compiler
parent143a68b2c43c4302abbbd39c28cac3f9c5f52f4a (diff)
Update a comment
Diffstat (limited to '')
-rw-r--r--compiler/Invariants.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/Invariants.ml b/compiler/Invariants.ml
index 6e448cc4..689db0c4 100644
--- a/compiler/Invariants.ml
+++ b/compiler/Invariants.ml
@@ -825,7 +825,7 @@ let check_symbolic_values (meta : Meta.meta) (ctx : eval_ctx) : unit =
* it must be expanded first *)
if ty_has_borrows ctx.type_ctx.type_infos info.ty then
sanity_check __FILE__ __LINE__ (info.env_count <= 1) meta;
- (* A duplicated symbolic value is necessarily primitively copyable *)
+ (* A duplicated symbolic value is necessarily copyable *)
sanity_check __FILE__ __LINE__
(info.env_count <= 1 || ty_is_copyable info.ty)
meta;