mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
Fix comment typo in debugger.rb
This commit is contained in:
parent
996e646bd8
commit
cb97312801
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue