summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-21 15:11:02 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-01-21 15:11:02 +0000
commitcb3cf6cfea9ebe102f2be5ac4967786805ffef87 (patch)
tree466b52e2bfb45706fae26e48229b9faff612f848
parent72592e35ae573e7c34cdfa7b5bfe22d420321ddd (diff)
:nodoc: the "Deprecated" module
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5529 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/.document2
-rw-r--r--lib/base64.rb5
3 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index 5f2c254148..0c9c05c8b1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Thu Jan 22 00:10:01 2004 Dave Thomas <dave@pragprog.com>
+
+ * lib/base64.rb: :nodoc: the Deprecated module
+
Wed Jan 21 23:52:39 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: Interix(SFU) support.
diff --git a/lib/.document b/lib/.document
index d50270f49a..598407e224 100644
--- a/lib/.document
+++ b/lib/.document
@@ -29,4 +29,4 @@ test/unit.rb
thread.rb
thwait.rb
time.rb
-yaml.rb \ No newline at end of file
+yaml.rb
diff --git a/lib/base64.rb b/lib/base64.rb
index d4d33d0bf0..de09a3f79e 100644
--- a/lib/base64.rb
+++ b/lib/base64.rb
@@ -15,7 +15,7 @@ require "kconv"
module Base64
module_function
- # Returns the Base64-decoded version of \obj{str}.
+ # Returns the Base64-decoded version of _str_.
#
# require 'base64'
# str = 'VGhpcyBpcyBsaW5lIG9uZQpUaGlzIG' +
@@ -85,7 +85,8 @@ module Base64
end
end
- module Deprecated
+
+ module Deprecated # :nodoc:
include Base64
def _deprecated_base64(*args)