aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support
diff options
context:
space:
mode:
authormntj <mntj11@gmail.com>2014-12-30 15:00:17 -0500
committermntj <mntj11@gmail.com>2014-12-30 15:00:17 -0500
commitcb97312801fdbd800c1e5cf0565d4b67c1625d40 (patch)
treeb373f46662c834ce07ac94dcbc56a844ef88ccca /activesupport/lib/active_support
parent996e646bd8cff3bcf2b13863439f48d3e744cdae (diff)
downloadrails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.tar.gz
rails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.tar.bz2
rails-cb97312801fdbd800c1e5cf0565d4b67c1625d40.zip
Fix comment typo in debugger.rb
Diffstat (limited to 'activesupport/lib/active_support')
-rw-r--r--activesupport/lib/active_support/core_ext/kernel/debugger.rb2
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)