Skip to content

Commit

Permalink
vale
Browse files Browse the repository at this point in the history
  • Loading branch information
reitermarkus committed Apr 30, 2024
1 parent 8bd85bd commit 96d8e62
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Library/Homebrew/extend/os/linux/install.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
module Homebrew
module Install
# This is a list of known paths to the host dynamic linker on Linux if
# the host glibc is new enough. The symlink_ld_so method will fail if
# the host glibc is new enough. The symlink_ld_so method will fail if
# the host linker cannot be found in this list.
DYNAMIC_LINKERS = %w[
/lib64/ld-linux-x86-64.so.2
Expand All @@ -19,7 +19,7 @@ module Install
private_constant :DYNAMIC_LINKERS

# We link GCC runtime libraries that are not specifically used for Fortran,
# which are linked by the GCC formula. We only use the versioned shared libraries
# which are linked by the GCC formula. We only use the versioned shared libraries
# as the other shared and static libraries are only used at build time where
# GCC can find its own libraries.
GCC_RUNTIME_LIBS = %w[
Expand Down
8 changes: 4 additions & 4 deletions Library/Homebrew/formulary.rb
Original file line number Diff line number Diff line change
Expand Up @@ -496,19 +496,19 @@ def self.convert_to_string_or_symbol(string)
class FormulaLoader
include Context

# The formula's name
# The formula's name.
sig { returns(String) }
attr_reader :name

# The formula's ruby file's path or filename
# The formula file's path.
sig { returns(Pathname) }
attr_reader :path

# The name used to install the formula
# The name used to install the formula.
sig { returns(T.nilable(Pathname)) }
attr_reader :alias_path

# The formula's tap (nil if it should be implicitly determined)
# The formula's tap (`nil` if it should be implicitly determined).
sig { returns(T.nilable(Tap)) }
attr_reader :tap

Expand Down

0 comments on commit 96d8e62

Please sign in to comment.