Skip to content

Commit 1ae0c40

Browse files
authored
docs: fix typo in throttle docs (#1024)
* docs: fix typo * docs: fix typo
1 parent 0b13d1b commit 1ae0c40

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs-source/throttle.in.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Notice that the returned array has no number bigger than 2 therefore
3434
the concurrency level of the block with the `do_stuff` was never bigger than 2.
3535

3636
```ruby
37-
# runs a block, and returns he observed concurrency level during the execution
37+
# runs a block, and returns the observed concurrency level during the execution
3838
def monitor_concurrency_level(concurrency_level, &block)
3939
concurrency_level.increment
4040
block.call

docs-source/throttle.out.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Notice that the returned array has no number bigger than 2 therefore
3636
the concurrency level of the block with the `do_stuff` was never bigger than 2.
3737

3838
```ruby
39-
# runs a block, and returns he observed concurrency level during the execution
39+
# runs a block, and returns the observed concurrency level during the execution
4040
def monitor_concurrency_level(concurrency_level, &block)
4141
concurrency_level.increment
4242
block.call

0 commit comments

Comments
 (0)