Merge pull request #17291 from Homebrew/fix-typos

This commit is contained in:
Patrick Linnane 2024-05-13 15:06:43 -07:00 committed by GitHub
commit 0b7d6794e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -264,7 +264,7 @@ module Kernel
raise ErrorDuringExecution.new([cmd, *args], status: $CHILD_STATUS) raise ErrorDuringExecution.new([cmd, *args], status: $CHILD_STATUS)
end end
# Run a system comand without any output. # Run a system command without any output.
# #
# @api internal # @api internal
def quiet_system(cmd, *args) def quiet_system(cmd, *args)

View File

@ -543,8 +543,8 @@ module GitHub
end end
elsif state == "open" && ENV["GITHUB_REPOSITORY_OWNER"] == "Homebrew" elsif state == "open" && ENV["GITHUB_REPOSITORY_OWNER"] == "Homebrew"
# Try use PR API, which might be cheaper on rate limits in some cases. # Try use PR API, which might be cheaper on rate limits in some cases.
# The rate limit of the search API under GraphQL is unclear as it's # The rate limit of the search API under GraphQL is unclear as it
# costs the same as any other query accoding to /rate_limit. # costs the same as any other query according to /rate_limit.
# The PR API is also not very scalable so limit to Homebrew CI. # The PR API is also not very scalable so limit to Homebrew CI.
return fetch_open_pull_requests(name, tap_remote_repo, version:) return fetch_open_pull_requests(name, tap_remote_repo, version:)
end end