Skip to content

Commit 360b1de

Browse files
committed
Correctly fixed missing require in Channel.
1 parent e8126b0 commit 360b1de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/concurrent/channel/channel.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
require 'concurrent/channel'
1+
require 'concurrent/ivar'
22

33
module Concurrent
44
module Channel
55

6-
class Probe < IVar
6+
class Probe < Concurrent::IVar
77

88
def initialize(value = NO_VALUE, opts = {})
99
super(value, opts)

0 commit comments

Comments
 (0)