diff options
author | Son Ho | 2022-11-11 16:34:09 +0100 |
---|---|---|
committer | Son Ho | 2022-11-11 16:34:09 +0100 |
commit | 9408cb898409da5588510233577a20468fac634f (patch) | |
tree | c18f0836bfbafc43b1df08fd5d050905ed57bf84 /compiler/InterpreterExpressions.ml | |
parent | f58d3bcea55c06921ad332e6c820b96a5d9d2c37 (diff) |
Fix some issues with the comments
Diffstat (limited to '')
-rw-r--r-- | compiler/InterpreterExpressions.mli | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/compiler/InterpreterExpressions.mli b/compiler/InterpreterExpressions.mli index a268ed1f..fa717041 100644 --- a/compiler/InterpreterExpressions.mli +++ b/compiler/InterpreterExpressions.mli @@ -17,7 +17,7 @@ open InterpreterPaths borrows*. This function doesn't reorganize the context to make sure we can read - the place. If needs be, you should call {!update_ctx_along_read_place} first. + the place. If needs be, you should call {!InterpreterPaths.update_ctx_along_read_place} first. *) val read_place : access_kind -> E.place -> (V.typed_value -> m_fun) -> m_fun @@ -64,8 +64,8 @@ val eval_operands : Transmits the computed rvalue to the received continuation. - Note that this function fails on {!E.Discriminant}: discriminant reads should - have been eliminated from the AST. + Note that this function fails on {!constructor:E.Discriminant}: discriminant + reads should have been eliminated from the AST. *) val eval_rvalue_not_global : C.config -> E.rvalue -> ((V.typed_value, eval_error) result -> m_fun) -> m_fun |