From 0fac6e262e7879860cd6c30fcc82bad842b446b6 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sat, 1 Feb 2020 19:03:07 +0100 Subject: [PATCH] utils: tweak formatting. --- Library/Homebrew/utils.rb | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index 4dfc19fe9e..7f2c7aea82 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -498,7 +498,10 @@ module Kernel end def command_help_lines(path) - path.read.lines.grep(/^#:/).map { |line| line.slice(2..-1) } + path.read + .lines + .grep(/^#:/) + .map { |line| line.slice(2..-1) } end def redact_secrets(input, secrets)