aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/cmds/brew-server
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Contributions/cmds/brew-server')
-rwxr-xr-xLibrary/Contributions/cmds/brew-server6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Contributions/cmds/brew-server b/Library/Contributions/cmds/brew-server
index 435a4abfa..5c55c05fa 100755
--- a/Library/Contributions/cmds/brew-server
+++ b/Library/Contributions/cmds/brew-server
@@ -173,7 +173,7 @@ get '/formula/:name' do
end
-def installed_formulas
+def installed_formulae
Formula.select{|formula| formula.installed?}
end
@@ -182,7 +182,7 @@ get '/installed' do
s = <<-HTML
<html>
<head>
- <title>Installed Formulas</title>
+ <title>Installed formulae</title>
#{css_style}
</head>
<body>
@@ -190,7 +190,7 @@ get '/installed' do
<ul>
HTML
- installed_formulas.each do |formula|
+ installed_formulae.each do |formula|
s << "<li>#{link_to_formula(formula.name)}</li>"
end