diff --git a/README.md b/README.md index 7ffb8da9..cd51fe75 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Unlike most JuliaFolds2 packages, it is not built off of Rather, OhMyThreads is meant to be a simpler, more maintainable, and more accessible alternative to packages like [ThreadsX.jl](https://github.com/tkf/ThreadsX.jl) or [Folds.jl](https://github.com/JuliaFolds2/Folds.jl). -OhMyThreads.jl re-exports the function `chunks` from +OhMyThreads.jl re-exports the very useful function `chunks` from [ChunkSplitters.jl](https://github.com/JuliaFolds2/ChunkSplitters.jl), and provides the following functions:
tmapreduce diff --git a/src/tools.jl b/src/tools.jl index 1a9d6b9f..af2e8899 100644 --- a/src/tools.jl +++ b/src/tools.jl @@ -18,7 +18,7 @@ end """ taskid() :: UInt -Return a `UInt` identifier for the current running [Task](https://docs.julialang.org/en/v1/base/parallel/#Core.Task). This identifier will be unique so long as references to the task it came from still exist. +Return a `UInt` identifier for the current running [Task](https://docs.julialang.org/en/v1/base/parallel/#Core.Task). This identifier will be unique so long as references to the task it came from still exist. """ taskid() = objectid(current_task())