From 5e60ca8527e49a09a4ba760d8b2495ad8867e46e Mon Sep 17 00:00:00 2001 From: Sam Westerman Date: Mon, 21 Aug 2023 08:40:00 +0000 Subject: [PATCH] Update core/kernel.rbs Co-authored-by: Jimmy H --- core/kernel.rbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/kernel.rbs b/core/kernel.rbs index 79544c450..fc9d2d481 100644 --- a/core/kernel.rbs +++ b/core/kernel.rbs @@ -490,7 +490,7 @@ module Kernel : BasicObject # Hash(nil) # => {} # Hash([]) # => {} # - def self?.Hash: [K, V] (nil | [] _empty) -> Hash[K, V] + def self?.Hash: (nil | [] _empty) -> Hash[untyped, untyped] | [K, V] (_ToHash[K, V] hash_like) -> Hash[K, V] #