aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-08-09 21:35:56 -0700
committerAdam Vandenberg2012-08-09 21:35:56 -0700
commit2104510b63a6233a1fdac4b7c6b6c12a5285bbf7 (patch)
treee8d34495264dd888d53e5b03bfbad966982025c7 /Library
parent928734c0bd66d8986ded1f01a7976d26866d3eb5 (diff)
downloadbrew-2104510b63a6233a1fdac4b7c6b6c12a5285bbf7.tar.bz2
New style is for option descriptions to not end with periods
Diffstat (limited to 'Library')
-rw-r--r--Library/Homebrew/formula_support.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb
index c792e2dd3..7958f457b 100644
--- a/Library/Homebrew/formula_support.rb
+++ b/Library/Homebrew/formula_support.rb
@@ -169,9 +169,9 @@ class BuildOptions
if description.nil?
case name
when :universal, "universal"
- description = "Build a universal binary."
+ description = "Build a universal binary"
when "32-bit"
- description = "Build 32-bit only."
+ description = "Build 32-bit only"
else
description = ""
end