From 9cab71a62f180f2b1f85c60c2b7b9d848ec568cf Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Fri, 14 Aug 2020 03:26:20 +0200 Subject: [PATCH] Document `Context`. --- Library/Homebrew/context.rb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Library/Homebrew/context.rb b/Library/Homebrew/context.rb index c8c70ac7b8..46407ed5bb 100644 --- a/Library/Homebrew/context.rb +++ b/Library/Homebrew/context.rb @@ -2,6 +2,9 @@ require "monitor" +# Module for querying the current execution context. +# +# @api private module Context extend MonitorMixin @@ -21,6 +24,7 @@ module Context end end + # Struct describing the current execution context. class ContextStruct def initialize(debug: nil, quiet: nil, verbose: nil) @debug = debug