From 2104510b63a6233a1fdac4b7c6b6c12a5285bbf7 Mon Sep 17 00:00:00 2001 From: Adam Vandenberg Date: Thu, 9 Aug 2012 21:35:56 -0700 Subject: [PATCH] New style is for option descriptions to not end with periods --- Library/Homebrew/formula_support.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/formula_support.rb b/Library/Homebrew/formula_support.rb index c792e2dd33..7958f457b5 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