Skip to content

Commit 64c6de1

Browse files
committed
Fix constant names in Set definition
1 parent 322c6bb commit 64c6de1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/concurrent/set.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ class JRubySet < ::Set
4141

4242
class RbxSet < ::Set
4343
end
44-
ThreadSafe::Util.make_synchronized_on_rbx Concurrent::Set
44+
ThreadSafe::Util.make_synchronized_on_rbx Concurrent::RbxSet
4545
RbxSet
4646

4747
when Concurrent.on_truffleruby?
@@ -50,7 +50,7 @@ class RbxSet < ::Set
5050
class TruffleRubySet < ::Set
5151
end
5252

53-
ThreadSafe::Util.make_synchronized_on_truffleruby Concurrent::Set
53+
ThreadSafe::Util.make_synchronized_on_truffleruby Concurrent::TruffleRubySet
5454
TruffleRubySet
5555

5656
else

0 commit comments

Comments
 (0)