Ruby on Rails | Screencasts | Download | Documentation | Weblog | Community | Source

Changeset 7645

Show
Ignore:
Timestamp:
09/27/07 06:16:20 (1 year ago)
Author:
bitsweat
Message:

Cleanup comment. References #9702, closes #9703.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/activesupport/lib/active_support/buffered_logger.rb

    r7643 r7645  
    5353      return if @level > severity 
    5454      message = message || (block && block.call) || progname 
    55       # If a newline is nessesary then create a new message end with a new line. 
     55      # If a newline is necessary then create a new message ending with a newline. 
    5656      # Ensures that the original message is not mutated. 
    5757      message = "#{message}\n" unless message[-1] == ?\n