We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4b00bc commit 89e6d60Copy full SHA for 89e6d60
src/analysis/syntax_doc.ml
@@ -260,9 +260,9 @@ let get_mode_doc mode =
260
| Comonadic Statefulness, Stateless ->
261
Some "Functions with this mode cannot access mutable data"
262
| Comonadic Forkable, Forkable ->
263
- Some "Values with this mode can be forked to other threads"
+ Some "Functions with this mode may be executed concurrently."
264
| Comonadic Forkable, Unforkable ->
265
- Some "Values with this mode cannot be forked to other threads"
+ Some "Functions with this mode cannot be executed concurrently."
266
in
267
let doc_url =
268
let subpage =
0 commit comments