Skip to content

Commit

Permalink
odoc typo
Browse files Browse the repository at this point in the history
  • Loading branch information
nmaguiar committed Dec 16, 2023
1 parent 56c608b commit 6d71605
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/openaf/plugins/Threads.java
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ public void initCachedThreadPool() {
/**
* <odoc>
* <key>Threads.initScheduledThreadPool(numberOfThreads)</key>
* Uses a thread pool situable for scheduled threads where you can specify the numberOfThreads to use (by defauly the number of cores).
* Uses a thread pool situable for scheduled threads where you can specify the numberOfThreads to use (by default the number of cores).
* Note: it ignores any previous thread added using addThread; It won't work if any of the other start* or init* methods has been used.
* </odoc>
*/
Expand All @@ -258,7 +258,7 @@ public void initScheduledThreadPool(int nThreads) {
/**
* <odoc>
* <key>Threads.initFixedThreadPool(numberOfThreads)</key>
* Uses a thread pool situable for fixed threads where you can specify the numberOfThreads to use (by defauly the number of cores).
* Uses a thread pool situable for fixed threads where you can specify the numberOfThreads to use (by default the number of cores).
* Note: it ignores any previous thread added using addThread; It won't work if any of the other start* or init* methods has been used.
* </odoc>
*/
Expand All @@ -277,7 +277,7 @@ public void initFixedThreadPool(int nThreads) {
/**
* <odoc>
* <key>Threads.initSingleThreadPool(numberOfThreads)</key>
* Uses a thread pool situable for single threads where you can specify the numberOfThreads to use (by defauly the number of cores).
* Uses a thread pool situable for single threads where you can specify the numberOfThreads to use (by default the number of cores).
* Note: it ignores any previous thread added using addThread; It won't work if any of the other start* or init* methods has been used.
* </odoc>
*/
Expand Down

0 comments on commit 6d71605

Please sign in to comment.