From c3d5fedea67a4eb27fb693d274e9e5854c1912f9 Mon Sep 17 00:00:00 2001 From: Luke Hill <20105237+luke-hill@users.noreply.github.com> Date: Tue, 3 Dec 2024 08:46:53 +0000 Subject: [PATCH] [rb] Update note for return value of Hash (#14845) Update note for return value of Hash --- rb/lib/selenium/webdriver/common/manager.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rb/lib/selenium/webdriver/common/manager.rb b/rb/lib/selenium/webdriver/common/manager.rb index d080e0ead6ef7..99181d7700f67 100644 --- a/rb/lib/selenium/webdriver/common/manager.rb +++ b/rb/lib/selenium/webdriver/common/manager.rb @@ -65,7 +65,7 @@ def add_cookie(opts = {}) # Get the cookie with the given name # # @param [String] name the name of the cookie - # @return [Hash, nil] the cookie, or throws a NoSuchCookieError if it wasn't found. + # @return [Hash] the cookie, or throws a NoSuchCookieError if it wasn't found. # def cookie_named(name)