From 18953416def52824c46a68370c4b34f5b720ee3f Mon Sep 17 00:00:00 2001 From: y-yagi Date: Thu, 28 Nov 2019 13:24:01 +0900 Subject: Fix documentation of `MonitorMixin#new_cond` [ci skip] (#2707) Since https://github.com/ruby/ruby/pull/2576, `new_cond` uses the Monitor object, not the receiver. --- ext/monitor/lib/monitor.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext') diff --git a/ext/monitor/lib/monitor.rb b/ext/monitor/lib/monitor.rb index b9ae03649c..821dccadbe 100644 --- a/ext/monitor/lib/monitor.rb +++ b/ext/monitor/lib/monitor.rb @@ -205,7 +205,7 @@ module MonitorMixin # # Creates a new MonitorMixin::ConditionVariable associated with the - # receiver. + # Monitor object. # def new_cond return ConditionVariable.new(@mon_data) -- cgit v1.2.3