Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Library/Homebrew/dev-cmd/unbottled.rb
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ def formulae_all_installs_from_args(eval_all)
formulae = Array(formulae).reject { |f| f.deprecated? || f.disabled? } if formulae.present?
all_formulae = Array(all_formulae).reject { |f| f.deprecated? || f.disabled? } if all_formulae.present?

# Remove portable formulae as they are are handled differently
# Remove portable formulae as they are handled differently
formulae = formulae.reject { |f| PORTABLE_FORMULAE.include?(f.name) } if formulae.present?
all_formulae = all_formulae.reject { |f| PORTABLE_FORMULAE.include?(f.name) } if all_formulae.present?

Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/migrator.rb
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ def repin
old_pin_link_record = self.old_pin_link_record
return unless old_pin_link_record

# `old_pin_record` is a relative symlink and when we try to to read it
# `old_pin_record` is a relative symlink and when we try to read it
# from <dir> we actually try to find file
# <dir>/../<...>/../Cellar/name/version.
# To repin formula we need to update the link thus that it points to
Expand Down
2 changes: 1 addition & 1 deletion Library/Homebrew/utils/curl.rb
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ def curl_http_content_headers_and_checksum(
file = Tempfile.new.tap(&:close)

# Convert specs to options. This is mostly key-value options,
# unless the value is a boolean in which case treat as as flag.
# unless the value is a boolean in which case treat as a flag.
specs = specs.flat_map do |option, argument|
next [] if argument == false # No flag.

Expand Down
2 changes: 1 addition & 1 deletion docs/Cask-Cookbook.md
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ Behaviour and usage of `target:` is [the same as with `app`](#renaming-the-targe
### Stanza: `rename`

The `rename` stanza provides a convenience method to rename files to provide more practical access to them.
This stanza should be used sparingly, and is reserved for scenarios where a the path of a file/directory is impossible to pre-determine.
This stanza should be used sparingly, and is reserved for scenarios where the path of a file/directory is impossible to pre-determine.

The example below can be used when the `pkg` path has a value such as timestamp that can't be detected without extracting the archive it is distributed within.

Expand Down
Loading