aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/formula.rb
diff options
context:
space:
mode:
authorMike McQuaid2014-01-04 12:49:48 +0000
committerMike McQuaid2014-01-04 13:19:20 +0000
commit49f20ff9b09f6dab0f242ed90e69ac1dc3630bce (patch)
tree812d07cf6b31e3205468c492b0d4aa1a8df5c93b /Library/Homebrew/formula.rb
parent19adfe50634a88c955ae70b0c1ac3699ad8405a4 (diff)
downloadhomebrew-49f20ff9b09f6dab0f242ed90e69ac1dc3630bce.tar.bz2
formula: fix whitespace.
Diffstat (limited to 'Library/Homebrew/formula.rb')
-rw-r--r--Library/Homebrew/formula.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula.rb b/Library/Homebrew/formula.rb
index 056fc9e52..a35b28633 100644
--- a/Library/Homebrew/formula.rb
+++ b/Library/Homebrew/formula.rb
@@ -796,7 +796,7 @@ class Formula
# version "The official release number for the latest incompatible
# version, for instance 4.8.1"
# end
- #
+ #
# `major_version` should be the major release number only, for instance
# '4.8' for the GCC 4.8 series (4.8.0, 4.8.1, etc.).
# If `version` or the block is omitted, then the compiler will be
@@ -804,7 +804,7 @@ class Formula
#
# For example, if a bug is only triggered on GCC 4.8.1 but is not
# encountered on 4.8.2:
- #
+ #
# fails_with :gcc => '4.8' do
# version '4.8.1'
# end