From de9826bc6504d2672b4f6db1ff1a0acd4d5edc80 Mon Sep 17 00:00:00 2001 From: Mason Protter Date: Thu, 1 Feb 2024 16:37:17 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 08d196db..617e829d 100644 --- a/README.md +++ b/README.md @@ -46,12 +46,12 @@ Following packages are supported by Transducers.jl. In particular, they rely on the Transducers.jl protocol to support multi-threading, multi-processing, and GPU-based parallelism. -* [Folds.jl](https://github.com/JuliaFolds/Folds.jl) implements parallelized +* [Folds.jl](https://github.com/JuliaFolds2/Folds.jl) implements parallelized `Base`-like API based on Transducers.jl. This package can be used without knowing anything about transducers. * [FLoops.jl](https://github.com/JuliaFolds/FLoops.jl) provides `for`-loop syntax for using the loop executed by the Transducers.jl protocol. -* [BangBang.jl](https://github.com/JuliaFolds/BangBang.jl) implements +* [BangBang.jl](https://github.com/JuliaFolds2/BangBang.jl) implements mutate-or-widen API. This is the foundation of [typocalypse](https://discourse.julialang.org/search?q=typocalypse)-free `map`/`collect`-like functions. Functions such as `append!!`, @@ -59,7 +59,7 @@ GPU-based parallelism. function. * [InitialValues.jl](https://github.com/JuliaFolds/InitialValues.jl) provides a framework for initial/identity element of folds. -* [MicroCollections.jl](https://github.com/JuliaFolds/MicroCollections.jl) +* [MicroCollections.jl](https://github.com/JuliaFolds2/MicroCollections.jl) provides empty and singleton collections (arrays, dicts and sets). They are useful when writing transducers and reducing functions that construct a data collection.