From 04f839ae6c15279da5961dad59530952b5210ee8 Mon Sep 17 00:00:00 2001 From: Masato Ohba Date: Wed, 29 May 2024 09:46:25 +0900 Subject: [PATCH] Fix wrong description --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81b7827..9e2fe6c 100644 --- a/README.md +++ b/README.md @@ -51,7 +51,7 @@ end Pbt.assert do # The given block is executed 100 times with different arrays with random numbers. - # Besides, the block runs in parallel by Ractor. + # Besides, if you set `worker: :ractor` option to `assert` method, it runs in parallel using Ractor. Pbt.property(Pbt.array(Pbt.integer)) do |numbers| result = sort(numbers) result.each_cons(2) do |x, y|