From ec559e8b8faf8f9918f12296e48747e0ed8aefa1 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Fri, 29 Dec 2023 12:18:37 +1300 Subject: [PATCH 1/2] docs: fix typo --- docs-source/throttle.in.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-source/throttle.in.md b/docs-source/throttle.in.md index ee2b317fc..a0d08b63a 100644 --- a/docs-source/throttle.in.md +++ b/docs-source/throttle.in.md @@ -34,7 +34,7 @@ Notice that the returned array has no number bigger than 2 therefore the concurrency level of the block with the `do_stuff` was never bigger than 2. ```ruby -# runs a block, and returns he observed concurrency level during the execution +# runs a block, and returns the observed concurrency level during the execution def monitor_concurrency_level(concurrency_level, &block) concurrency_level.increment block.call From 61d1429c09eb7b75202dc5b37a0fdaa86bfb94f0 Mon Sep 17 00:00:00 2001 From: Gareth Jones Date: Fri, 29 Dec 2023 12:18:57 +1300 Subject: [PATCH 2/2] docs: fix typo --- docs-source/throttle.out.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs-source/throttle.out.md b/docs-source/throttle.out.md index 7ff59137e..944d1407b 100644 --- a/docs-source/throttle.out.md +++ b/docs-source/throttle.out.md @@ -36,7 +36,7 @@ Notice that the returned array has no number bigger than 2 therefore the concurrency level of the block with the `do_stuff` was never bigger than 2. ```ruby -# runs a block, and returns he observed concurrency level during the execution +# runs a block, and returns the observed concurrency level during the execution def monitor_concurrency_level(concurrency_level, &block) concurrency_level.increment block.call