From ac3ce218e3560713c44e856b2906be7e53a164e0 Mon Sep 17 00:00:00 2001 From: Rylan Polster Date: Wed, 30 Dec 2020 15:09:00 -0500 Subject: [PATCH] man: fix style issue --- Library/Homebrew/dev-cmd/man.rb | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/dev-cmd/man.rb b/Library/Homebrew/dev-cmd/man.rb index ae3dc6face..06372647ea 100644 --- a/Library/Homebrew/dev-cmd/man.rb +++ b/Library/Homebrew/dev-cmd/man.rb @@ -218,7 +218,8 @@ module Homebrew sig { returns(String) } def global_cask_options_manpage - lines = ["These options are applicable to the `install`, `reinstall`, and `upgrade` subcommands with the `--cask` flag.\n"] + lines = ["These options are applicable to the `install`, `reinstall`, and `upgrade` " \ + "subcommands with the `--cask` flag.\n"] lines += Homebrew::CLI::Parser.global_cask_options.map do |_, long, description:, **| generate_option_doc(nil, long.chomp("="), description) end