Skip to content

Commit c7ff04e

Browse files
SkepfyrMax Slater
andcommitted
Fix forkable mode doc
Co-authored-by: Max Slater <[email protected]>
1 parent f4b00bc commit c7ff04e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/analysis/syntax_doc.ml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -260,9 +260,9 @@ let get_mode_doc mode =
260260
| Comonadic Statefulness, Stateless ->
261261
Some "Functions with this mode cannot access mutable data"
262262
| Comonadic Forkable, Forkable ->
263-
Some "Values with this mode can be forked to other threads"
263+
Some "Functions with this mode may be executed concurrently."
264264
| Comonadic Forkable, Unforkable ->
265-
Some "Values with this mode cannot be forked to other threads"
265+
Some "Functions with this mode cannot be executed concurrently."
266266
in
267267
let doc_url =
268268
let subpage =

0 commit comments

Comments
 (0)