aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/keg.rb
diff options
context:
space:
mode:
authorJack Nagel2014-07-12 20:15:57 -0500
committerJack Nagel2014-07-12 20:15:57 -0500
commitf9e98cc7107166db3bd83b2ae0aa04759173357a (patch)
tree32804f58c82eef48c6a862a180253d75a541a20d /Library/Homebrew/keg.rb
parent398964e747a5eaa9e9a099d3fc47c3a4e9badba2 (diff)
downloadhomebrew-f9e98cc7107166db3bd83b2ae0aa04759173357a.tar.bz2
Fix typo
Diffstat (limited to 'Library/Homebrew/keg.rb')
-rw-r--r--Library/Homebrew/keg.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/keg.rb b/Library/Homebrew/keg.rb
index 9b9625fbc..a6d9bafd1 100644
--- a/Library/Homebrew/keg.rb
+++ b/Library/Homebrew/keg.rb
@@ -325,7 +325,7 @@ class Keg
src = dst.resolved_path
# src itself may be a symlink, so check lstat to ensure we are dealing with
# a directory, and not a symlink pointing at a directory (which needs to be
- # treated as a file). In other words, we onlly want to resolve one symlink.
+ # treated as a file). In other words, we only want to resolve one symlink.
# If it isn't a directory, make_relative_symlink will raise an exception.
if dst.symlink? && src.lstat.directory?
keg = Keg.for(src)