aboutsummaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorgeemus <geemus@gmail.com>2011-08-13 10:00:23 -0500
committerTerence Lee <hone02@gmail.com>2011-08-13 13:09:06 -0500
commit46cb60511e43a1cecc525218eccd54275dfa8751 (patch)
treed8429ed9428efb85b96e957d2702c0fa02d0fc08 /lib
parent5ac516f893791f24b9ffd0d1fba70a709f1aee59 (diff)
downloadbundler-46cb60511e43a1cecc525218eccd54275dfa8751.tar.gz
fix typo in DEBUG_RESOLVER
Diffstat (limited to 'lib')
-rw-r--r--lib/bundler/resolver.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/bundler/resolver.rb b/lib/bundler/resolver.rb
index da8497af..45519a73 100644
--- a/lib/bundler/resolver.rb
+++ b/lib/bundler/resolver.rb
@@ -145,7 +145,7 @@ module Bundler
def debug
if ENV['DEBUG_RESOLVER']
debug_info = yield
- debug_info = debug_info.inpsect unless debug_info.is_a?(String)
+ debug_info = debug_info.inspect unless debug_info.is_a?(String)
$stderr.puts debug_info
end
end