1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* lib/drb/drb.rb: Cosmetic documentation changes.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@6328 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
gsinclair 2004-05-16 15:09:52 +00:00
parent a631216cb6
commit bcdaac433f
2 changed files with 13 additions and 9 deletions

View file

@ -1,3 +1,7 @@
Mon May 17 00:03:00 2004 Gavin Sinclair <gsinclair@soyabean.com.au>
* lib/drb/drb.rb: Cosmetic documentation changes.
Sun May 16 22:36:00 2004 Gavin Sinclair <gsinclair@soyabean.com.au>
* lib/text/unit.rb: Removed :nodoc: directive (it prevented effective

View file

@ -1,14 +1,14 @@
#
# 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
#
# Author: Masatoshi SEKI
# Copyright (c) 1999-2003 Masatoshi SEKI. You can redistribute it and/or
# modify it under the same terms as Ruby.
#
# Documentation: William Webber (william@williamwebber.com)
# Author:: Masatoshi SEKI
#
# Documentation:: William Webber (william@williamwebber.com)
#
# == Overview
#
@ -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,