diff --git a/src/main/java/com/github/jlangch/venice/impl/functions/ConcurrencyFunctions.java b/src/main/java/com/github/jlangch/venice/impl/functions/ConcurrencyFunctions.java index d0f027872..fd20c04ef 100644 --- a/src/main/java/com/github/jlangch/venice/impl/functions/ConcurrencyFunctions.java +++ b/src/main/java/com/github/jlangch/venice/impl/functions/ConcurrencyFunctions.java @@ -2554,7 +2554,7 @@ public VncVal apply(final VncList args) { "the thread name is set to \"venice-thread\". For each thread spawned on " + "a name the thread's name will be suffixed with an incrementing index starting " + "from 1.\n\n" + - "The thread type *daemon* or *user* can be controlled by the *type* argument " + + "The thread type (*daemon* or *user*) can be controlled by the *type* argument " + "that must be one of {:daemon, :user}. By default a daemon thread is spawned.\n\n" + "*Note:* Each call to `thread` creates a new expensive system thread. " + "Consider to use futures or promises that use an *ExecutorService* to " +