Skip to content

Commit a8eebef

Browse files
committed
Minor
1 parent 8856c30 commit a8eebef

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

user_manual.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2321,16 +2321,16 @@ DESUGAR(t):
23212321
(eo::ite DESUGAR( (eo::is_eq (eo::typeof (f_m k_1 ... k_n)) T) ) f_m
23222322
...
23232323
(eo::ite DESUGAR( (eo::is_eq (eo::typeof (f_1 k_1 ... k_n)) T) ) f_1
2324-
(eo::as f_m DESUGAR( (-> T_1 ... T_n T) ) ...)) ) ; eo::as is unprocessed, will be a type error.
2324+
(eo::as f_m DESUGAR( (-> T_1 ... T_n T) ) ...)) ) ; Otherwise, eo::as is unprocessed, will be a type error.
23252325
23262326
;;; overloaded functions
23272327
2328-
(f t_1 ... t_n), where S[NAME(f)] = [f_1, ..., f_m], m>1:
2328+
(f t_1 ... t_n), where S[NAME(f)] = [f_1, ..., f_m] and m>1:
23292329
return DESUGAR(
23302330
(_ (eo::ite (eo::is_eq (eo::typeof (f_m t_1 ... t_n)) T) f_m
23312331
...
23322332
(eo::ite (eo::is_eq (eo::typeof (f_1 t_1 ... t_n)) T) f_1
2333-
f_m ...)) t_1 ... t_n) ) ; Defaults to most recent if type checking fails for all overloads, we give a warning in this case.
2333+
f_m ...)) t_1 ... t_n) ) ; Otherwise, defaults to most recent if type checking fails for all overloads, we give a warning in this case.
23342334
23352335
;;; binders, definitions
23362336

0 commit comments

Comments
 (0)