aboutsummaryrefslogtreecommitdiffstats
path: root/sample/drb/simpletuple.rb
diff options
context:
space:
mode:
Diffstat (limited to 'sample/drb/simpletuple.rb')
-rw-r--r--sample/drb/simpletuple.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/sample/drb/simpletuple.rb b/sample/drb/simpletuple.rb
index 1b9b7a35a7..bfbd86e665 100644
--- a/sample/drb/simpletuple.rb
+++ b/sample/drb/simpletuple.rb
@@ -58,10 +58,10 @@ if __FILE__ == $0
def server(ts)
Thread.start {
loop do
- req = ts.in('req')
- ac = req[0]
- num = req[1]
- ts.out(ac, num * num)
+ req = ts.in('req')
+ ac = req[0]
+ num = req[1]
+ ts.out(ac, num * num)
end
}
end