aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-20 10:35:01 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-05-20 10:35:01 +0000
commit3786bd6096302218ef618d005c4e280c38f612d3 (patch)
tree54051ce5850d38ae76fe4ec7e5f3c4e4a7c20a80
parenta3672d4bf4ddc5e39622e606df808b3954e18849 (diff)
downloadruby-3786bd6096302218ef618d005c4e280c38f612d3.tar.gz
* lib/logger.rb (Logger::Application): show namespace in documentation
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@40851 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/logger.rb6
2 files changed, 7 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b8453a0c4..c107895bba 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Mon May 20 19:31:49 2013 Benoit Daloze <eregontp@gmail.com>
+
+ * lib/logger.rb (Logger::Application): show namespace in documentation
+
Mon May 20 11:50:12 2013 Zachary Scott <zachary@zacharyscott.net>
* lib/pp.rb: Revert part of r40834 and nodoc PP::ObjectMixin
diff --git a/lib/logger.rb b/lib/logger.rb
index 3376cf8216..469c6038c4 100644
--- a/lib/logger.rb
+++ b/lib/logger.rb
@@ -682,7 +682,7 @@ private
#
# == Description
#
- # Application --- Add logging support to your application.
+ # Logger::Application --- Add logging support to your application.
#
# == Usage
#
@@ -692,7 +692,7 @@ private
#
# == Example
#
- # class FooApp < Application
+ # class FooApp < Logger::Application
# def initialize(foo_app, application_specific, arguments)
# super('FooApp') # Name of the application.
# end
@@ -717,7 +717,7 @@ private
#
# == Synopsis
#
- # Application.new(appname = '')
+ # Logger::Application.new(appname = '')
#
# == Args
#