summaryrefslogtreecommitdiff
path: root/src/PrintPure.ml
diff options
context:
space:
mode:
authorSon Ho2022-10-26 19:42:30 +0200
committerSon HO2022-10-26 19:45:09 +0200
commit16560ce5d6409e0f0326a0c6046960253e444ba4 (patch)
treec17058a7fb7e076134841271b7693ba18b1b9285 /src/PrintPure.ml
parente1f79b07440f35e5e6296b61819cf50e6f60f090 (diff)
Update the code documentation to fix links and syntax issues
Diffstat (limited to 'src/PrintPure.ml')
-rw-r--r--src/PrintPure.ml8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/PrintPure.ml b/src/PrintPure.ml
index 0a7091f0..a9e42f6c 100644
--- a/src/PrintPure.ml
+++ b/src/PrintPure.ml
@@ -239,7 +239,7 @@ let adt_variant_to_string (fmt : value_formatter) (adt_id : type_id)
(* Assumed type *)
match aty with
| State ->
- (* The `State` type is opaque: we can't get there *)
+ (* The [State] type is opaque: we can't get there *)
raise (Failure "Unreachable")
| Result ->
let variant_id = Option.get variant_id in
@@ -262,7 +262,7 @@ let adt_field_to_string (fmt : value_formatter) (adt_id : type_id)
match adt_id with
| Tuple ->
raise (Failure "Unreachable")
- (* Tuples don't use the opaque field id for the field indices, but `int` *)
+ (* Tuples don't use the opaque field id for the field indices, but [int] *)
| AdtId def_id -> (
(* "Regular" ADT *)
let fields = fmt.adt_field_names def_id None in
@@ -316,7 +316,7 @@ let adt_g_value_to_string (fmt : value_formatter)
(* Assumed type *)
match aty with
| State ->
- (* The `State` type is opaque: we can't get there *)
+ (* The [State] type is opaque: we can't get there *)
raise (Failure "Unreachable")
| Result ->
let variant_id = Option.get variant_id in
@@ -467,7 +467,7 @@ let rec texpression_to_string (fmt : ast_formatter) (inside : bool)
and app_to_string (fmt : ast_formatter) (inside : bool) (indent : string)
(indent_incr : string) (app : texpression) (args : texpression list) :
string =
- (* There are two possibilities: either the `app` is an instantiated,
+ (* There are two possibilities: either the [app] is an instantiated,
* top-level qualifier (function, ADT constructore...), or it is a "regular"
* expression *)
let app, tys =