Skip to content

Commit 467f3e4

Browse files
author
Petr Chalupa
authored
Merge pull request #633 from parasquid/documentation/use-the-correct-url-in-the-comments
Documentation/use the correct url in the comments
2 parents cdf10b2 + cfce5d2 commit 467f3e4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/go-by-example-channels/rate-limiting.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
Channel = Concurrent::Channel
88

99
## Go by Example: Rate Limiting
10-
# https://gobyexample.com/tickers
10+
# https://gobyexample.com/rate-limiting
1111

1212
requests = Channel.new(buffer: :buffered, capacity: 5)
1313
(1..5).each do |i|

examples/go-by-example-channels/worker-pools.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Channel = Concurrent::Channel
66

77
## Go by Example: Go by Example: Worker Pools
8-
# https://gobyexample.com/tickers
8+
# https://gobyexample.com/worker-pools
99

1010
def worker(id, jobs, results)
1111
jobs.each do |j|

0 commit comments

Comments
 (0)