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
commitea1ae32a136bbcbe0a52b0990d947df3eb0a69c4 (patch)
tree96576d4fff7ea1f0280ecdaa04e3fb2de8d480cc /Library/Homebrew/formula.rb
parentc247f66a13d0ab5c6feab444d016505811a15bdd (diff)
downloadbrew-ea1ae32a136bbcbe0a52b0990d947df3eb0a69c4.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