From 0966d2cd8ff18d1d83fd63d8b8cbce1cb7b1f094 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Fri, 23 Feb 2024 15:09:58 +0100 Subject: [PATCH] Add signature for `Tap#config`. --- Library/Homebrew/tap.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/tap.rb b/Library/Homebrew/tap.rb index 5bad532b3b..fa388237cc 100644 --- a/Library/Homebrew/tap.rb +++ b/Library/Homebrew/tap.rb @@ -271,6 +271,7 @@ class Tap end # {TapConfig} of this {Tap}. + sig { returns(TapConfig) } def config @config ||= begin raise TapUnavailableError, name unless installed?