From 8bd85bdd26594c270c70cd9a6a83ec5feb2f8cb1 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Tue, 30 Apr 2024 16:25:01 +0200 Subject: [PATCH] vale --- Library/Homebrew/cleaner.rb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Library/Homebrew/cleaner.rb b/Library/Homebrew/cleaner.rb index 7ca2b4f7d57f99..79f2734f185fd9 100644 --- a/Library/Homebrew/cleaner.rb +++ b/Library/Homebrew/cleaner.rb @@ -31,7 +31,7 @@ def clean [@formula.bin, @formula.sbin, @formula.lib].each { |dir| clean_dir(dir) if dir.exist? } - # Get rid of any info `dir` files, so they don't conflict at the link stage + # Get rid of any info `dir` files, so they don't conflict at the link stage. # # The `dir` files come in at least 3 locations: # @@ -43,9 +43,9 @@ def clean # conflict with other formulae because they use a shared location. # # See - # [cleaner: recursively delete info `dir`s by gromgit · Pull Request #11597][1], - # [emacs 28.1 bottle does not contain `dir` file · Issue #100190][2] and - # [Keep `info/#{f.name}/dir` files in cleaner by timvisher][3] + # [cleaner: recursively delete info `dir`s][1], + # [emacs 28.1 bottle does not contain `dir` file][2] and + # [Keep `info/#{f.name}/dir` files in cleaner][3] # for more info. # # [1]: https://github.com/Homebrew/brew/pull/11597