aboutsummaryrefslogtreecommitdiffstats
path: root/lib/logger.rb
diff options
context:
space:
mode:
authormatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-31 06:31:38 +0000
committermatz <matz@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2006-07-31 06:31:38 +0000
commit4c86e4a580fc172b0f524a371c133d6d990022d0 (patch)
tree9ea49b57c1045fa5e5e912cd8f03a2e3d722db83 /lib/logger.rb
parentddc38a6abbd94df58a99c6aff43e4ab71a7132a2 (diff)
downloadruby-4c86e4a580fc172b0f524a371c133d6d990022d0.tar.gz
* 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: svn+ssh://ci.ruby-lang.org/ruby/trunk@10647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/logger.rb')
-rw-r--r--lib/logger.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/logger.rb b/lib/logger.rb
index 9a2b51d6db..bf5c837edd 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$