From 837d0e4f2dd8f49de4a74323ec2dbf0d71578cc7 Mon Sep 17 00:00:00 2001 From: albertchae <217050+albertchae@users.noreply.github.com> Date: Wed, 24 Dec 2025 19:54:53 -0800 Subject: [PATCH] Fix import in README example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 3c46e5d..4bf4497 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ gleam add parallel_map import gleam/list import gleam/yielder import gleam/result -import parallel_map.{MatchSchedulers, WorkerAmount} +import parallel_map.{MatchSchedulersOnline, WorkerAmount} pub fn main() { let map_func = fn(a: Int) -> Int {a * a}