Skip to content

Commit

Permalink
docs: brew style --fix
Browse files Browse the repository at this point in the history
  • Loading branch information
MikeMcQuaid committed Jun 12, 2024
1 parent 23f12a9 commit d937559
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/Brew-Livecheck.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ A `strategy` block for `Git` is a bit different, as the block receives an array
livecheck do
url :stable
strategy :git do |tags|
tags.map { |tag| tag[/^(\d{4}-\d{2}-\d{2})$/i, 1]&.gsub(/\D/, "") }.compact
tags.filter_map { |tag| tag[/^(\d{4}-\d{2}-\d{2})$/i, 1]&.gsub(/\D/, "") }
end
end
```
Expand Down
4 changes: 2 additions & 2 deletions docs/External-Commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ module Homebrew
Do something. Place a description here.
EOS
switch "-f", "--force",
description: "Force doing something in the command."
description: "Force doing something in the command."
flag "--file=",
description: "Specify a file to do something with in the command."
description: "Specify a file to do something with in the command."
comma_array "--names",
description: "Add a list of names to the command."

Expand Down

0 comments on commit d937559

Please sign in to comment.