From 52e85fed75bf83d5fc1ef43e7c385729c8f0ac75 Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada Date: Tue, 3 Feb 2026 12:41:44 +0900 Subject: [PATCH] [DOC] document the private instance method --- lib/timeout.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/timeout.rb b/lib/timeout.rb index e293e3b..eb66e58 100644 --- a/lib/timeout.rb +++ b/lib/timeout.rb @@ -305,6 +305,7 @@ def self.timeout(sec, klass = nil, message = nil, &block) #:yield: +sec+ end end + # See Timeout.timeout private def timeout(*args, &block) Timeout.timeout(*args, &block) end