summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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)