aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/aspell-dictionaries.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd/aspell-dictionaries.rb')
-rw-r--r--Library/Homebrew/cmd/aspell-dictionaries.rb9
1 files changed, 5 insertions, 4 deletions
diff --git a/Library/Homebrew/cmd/aspell-dictionaries.rb b/Library/Homebrew/cmd/aspell-dictionaries.rb
index 8e9197bda..f610ecfbd 100644
--- a/Library/Homebrew/cmd/aspell-dictionaries.rb
+++ b/Library/Homebrew/cmd/aspell-dictionaries.rb
@@ -1,6 +1,6 @@
-require 'open-uri'
-require 'resource'
-require 'formula'
+require "open-uri"
+require "resource"
+require "formula"
module Homebrew
def aspell_dictionaries
@@ -14,7 +14,8 @@ module Homebrew
next unless /^<tr><td><a/ === line
fields = line.split('"')
- lang, path = fields[1], fields[3]
+ lang = fields[1]
+ path = fields[3]
lang.gsub!("-", "_")
languages[lang] = path
end