We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95b83c commit a261263Copy full SHA for a261263
lib/concurrent/atomic/semaphore.rb
@@ -134,11 +134,11 @@ module Concurrent
134
#
135
# [t1, t2, t3, t4].each(&:join)
136
137
- # outputs
138
- # "Thread 3 acquired semaphore"
139
- # "Thread 2 acquired semaphore"
140
- # "Thread 4 releasing semaphore"
141
- # "Thread 1 acquired semaphore"
+ # # prints:
+ # # Thread 3 acquired semaphore
+ # # Thread 2 acquired semaphore
+ # # Thread 4 releasing semaphore
+ # # Thread 1 acquired semaphore
142
143
class Semaphore < SemaphoreImplementation
144
end
0 commit comments