summaryrefslogtreecommitdiffstats
path: root/lib/drb
diff options
context:
space:
mode:
authorgsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-16 15:09:52 +0000
committergsinclair <gsinclair@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2004-05-16 15:09:52 +0000
commit60316f16e1da9344575d63c22017d8c7d8b1d147 (patch)
treec584a6abeb0efa47ab021757b38dbc55b46f0be1 /lib/drb
parent8c2436b8bb70861ee87f25e4e0978b7d9507292e (diff)
downloadruby-60316f16e1da9344575d63c22017d8c7d8b1d147.tar.gz
ruby-60316f16e1da9344575d63c22017d8c7d8b1d147.tar.xz
ruby-60316f16e1da9344575d63c22017d8c7d8b1d147.zip
* lib/drb/drb.rb: Cosmetic documentation changes.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/drb')
-rw-r--r--lib/drb/drb.rb14
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/drb/drb.rb b/lib/drb/drb.rb
index 218150b0c..829b9cb91 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,