diff --git a/ChangeLog b/ChangeLog index f6ded75be2..91326cf623 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +Mon May 17 00:07:00 2004 Gavin Sinclair + + * lib/drb/drb.rb: Cosmetic documentation changes. + Sun May 16 20:55:49 2004 Tanaka Akira * ext/dbm/dbm.c (fdbm_initialize): accept optional 3rd argument to diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb index 218150b0cd..829b9cb916 100644 --- a/lib/drb/drb.rb +++ b/lib/drb/drb.rb @@ -1,10 +1,10 @@ # -# drb/drb.rb -- distributed Ruby --- dRuby 2.0.4 +# = drb/drb.rb # -#-- -# Copyright (c) 1999-2003 Masatoshi SEKI You can redistribute it and/or -# modify it under the same terms as Ruby. -#++ +# Distributed Ruby: _dRuby_ version 2.0.4 +# +# Copyright (c) 1999-2003 Masatoshi SEKI. You can redistribute it and/or +# modify it under the same terms as Ruby. # # Author: Masatoshi SEKI # @@ -136,12 +136,12 @@ require 'drb/eq' # the collected values are finally returned to the local context as # the return value of the method invocation. # -# == Examples of usage. +# == Examples of usage # # For more dRuby samples, see the +samples+ directory in the full # dRuby distribution. # -# === dRuby in client/server mode. +# === dRuby in client/server mode # # This illustrates setting up a simple client-server drb # system. Run the server and client code in different terminals,