Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit f8869bc

Browse files
committed
format
1 parent 8adfd2b commit f8869bc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/res_core.ml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@ module ErrorMessages = struct
8585
"Lists can only have one `...` spread, and at the end.\n\
8686
Explanation: lists are singly-linked list, where a node contains a value \
8787
and points to the next node. `list{a, ...bc}` efficiently creates a new \
88-
item and links `bc` as its next nodes. `list{...bc, a}` would be expensive, \
89-
as it'd need to traverse `bc` and prepend each item to `a` one by one. We \
90-
therefore disallow such syntax sugar.\n\
88+
item and links `bc` as its next nodes. `list{...bc, a}` would be \
89+
expensive, as it'd need to traverse `bc` and prepend each item to `a` one \
90+
by one. We therefore disallow such syntax sugar.\n\
9191
Solution: directly use `concat`."
9292

9393
let variantIdent =

0 commit comments

Comments
 (0)