diff options
author | mntj <mntj11@gmail.com> | 2014-12-30 15:00:17 -0500 |
---|---|---|
committer | mntj <mntj11@gmail.com> | 2014-12-30 15:00:17 -0500 |
commit | cb97312801fdbd800c1e5cf0565d4b67c1625d40 (patch) | |
tree | b373f46662c834ce07ac94dcbc56a844ef88ccca /activesupport | |
parent | 996e646bd8cff3bcf2b13863439f48d3e744cdae (diff) | |
download | rails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.tar.gz rails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.tar.bz2 rails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.zip |
Fix comment typo in debugger.rb
Diffstat (limited to 'activesupport')
-rw-r--r-- | activesupport/lib/active_support/core_ext/kernel/debugger.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/kernel/debugger.rb b/activesupport/lib/active_support/core_ext/kernel/debugger.rb index 2073cac98d..d8bb461010 100644 --- a/activesupport/lib/active_support/core_ext/kernel/debugger.rb +++ b/activesupport/lib/active_support/core_ext/kernel/debugger.rb @@ -1,6 +1,6 @@ module Kernel unless respond_to?(:debugger) - # Starts a debugging session if the +debugger+ gem has been loaded (call rails server --debugger to do load it). + # Starts a debugging session if the +debugger+ gem has been loaded (call rails server --debugger to load it). def debugger message = "\n***** Debugger requested, but was not available (ensure the debugger gem is listed in Gemfile/installed as gem): Start server with --debugger to enable *****\n" defined?(Rails) ? Rails.logger.info(message) : $stderr.puts(message) |