summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-28 16:28:27 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-28 16:28:27 +0000
commit83e9c695ec088d01db7cd8702759842cbb537457 (patch)
treed48aacb17c4c90e955fc4cd63308a581a0704442
parent7cec349b595dc2a1c6514318d2244c44260bbab5 (diff)
downloadruby-83e9c695ec088d01db7cd8702759842cbb537457.tar.gz
ruby-83e9c695ec088d01db7cd8702759842cbb537457.tar.xz
ruby-83e9c695ec088d01db7cd8702759842cbb537457.zip
* lib/logger.rb: improves the amount of documentation that Rdoc
picks up when processing logger.rb by moving the require statement back before the comment block. a patch from Hugh Sasse <hgs at dmu.ac.uk>. [ruby-core:08422] git-svn-id: http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_8@10638 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog7
-rw-r--r--lib/logger.rb6
2 files changed, 10 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e3f14414a..af12b5310 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+Sat Jul 29 01:23:52 2006 Yukihiro Matsumoto <matz@ruby-lang.org>
+
+ * lib/logger.rb: improves the amount of documentation that Rdoc
+ picks up when processing logger.rb by moving the require
+ statement back before the comment block. a patch from Hugh
+ Sasse <hgs at dmu.ac.uk>. [ruby-core:08422]
+
Thu Jul 27 22:21:52 2006 Nobuyoshi Nakada <nobu@ruby-lang.org>
* time.c (time_to_s): fixed format mismatch.
diff --git a/lib/logger.rb b/lib/logger.rb
index 9a2b51d6d..bf5c837ed 100644
--- a/lib/logger.rb
+++ b/lib/logger.rb
@@ -17,6 +17,9 @@
#
+require 'monitor'
+
+
#
# == Description
#
@@ -174,9 +177,6 @@
#
-require 'monitor'
-
-
class Logger
VERSION = "1.2.6"
/: (\S+),v (\S+)/ =~ %q$Id$