aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd/edit.rb
diff options
context:
space:
mode:
authorJack Nagel2011-05-07 19:29:54 -0500
committerAdam Vandenberg2011-05-07 21:50:37 -0700
commitd3d8a916cf975ca35e1cf96c4b36f133dc9d8435 (patch)
tree72aef373a45c08473f82c5eac83c513dbac45372 /Library/Homebrew/cmd/edit.rb
parentae139015521845697cfbe79f45e1f0991d6a67c1 (diff)
downloadhomebrew-d3d8a916cf975ca35e1cf96c4b36f133dc9d8435.tar.bz2
Fix misspelled method name: Formula.canonical_name
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Homebrew/cmd/edit.rb')
-rw-r--r--Library/Homebrew/cmd/edit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/edit.rb b/Library/Homebrew/cmd/edit.rb
index 079f561a0..5436dc975 100644
--- a/Library/Homebrew/cmd/edit.rb
+++ b/Library/Homebrew/cmd/edit.rb
@@ -13,7 +13,7 @@ module Homebrew extend self
else
# Don't use ARGV.formulae as that will throw if the file doesn't parse
paths = ARGV.named.map do |name|
- HOMEBREW_REPOSITORY+"Library/Formula/#{Formula.caniconical_name name}.rb"
+ HOMEBREW_REPOSITORY+"Library/Formula/#{Formula.canonical_name name}.rb"
end
unless ARGV.force?
paths.each do |path|