summaryrefslogtreecommitdiff
path: root/lib/rinda
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rinda')
-rw-r--r--lib/rinda/rinda.rb2
-rw-r--r--lib/rinda/tuplespace.rb10
2 files changed, 6 insertions, 6 deletions
diff --git a/lib/rinda/rinda.rb b/lib/rinda/rinda.rb
index 37af34280a..0352a7be90 100644
--- a/lib/rinda/rinda.rb
+++ b/lib/rinda/rinda.rb
@@ -1,5 +1,5 @@
#
-# rinda.rb: A Ruby implementation of the Linda distibuted computing paradigm.
+# rinda.rb: A Ruby implementation of the Linda distributed computing paradigm.
#
# <i>Introduction to Linda/rinda?</i>
#
diff --git a/lib/rinda/tuplespace.rb b/lib/rinda/tuplespace.rb
index 2353446857..6986e49b3e 100644
--- a/lib/rinda/tuplespace.rb
+++ b/lib/rinda/tuplespace.rb
@@ -55,7 +55,7 @@ module Rinda
# the argument is:
#
# +nil+:: it is set to expire in the far future.
- # +false+:: it has epired.
+ # +false+:: it has expired.
# Numeric:: it will expire in that many seconds.
#
# Otherwise the argument refers to some kind of renewer object
@@ -105,7 +105,7 @@ module Rinda
private
# Given +true+, +nil+, or +Numeric+, returns that (suitable input to
- # make_epires) and +nil+ (no actual +renewer+), else it return the
+ # make_expires) and +nil+ (no actual +renewer+), else it return the
# time data from the supplied +renewer+.
def get_renewer(it)
case it
@@ -146,7 +146,7 @@ module Rinda
end
#
- # <i>Documenation?</i>
+ # <i>Documentation?</i>
#
class WaitTemplateEntry < TemplateEntry
def initialize(place, ary, expires=nil)
@@ -179,7 +179,7 @@ module Rinda
end
#
- # <i>Documenation?</i>
+ # <i>Documentation?</i>
#
class NotifyTemplateEntry < TemplateEntry
def initialize(place, event, tuple, expires=nil)
@@ -276,7 +276,7 @@ module Rinda
#
# The Tuplespace manages access to the tuples it contains,
- # ensuring mutual exclusion requirments are met.
+ # ensuring mutual exclusion requirements are met.
#
class TupleSpace
include DRbUndumped