diff options
author | Tim Emiola <temiola@google.com> | 2015-02-09 13:00:54 -0800 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-02-09 13:00:54 -0800 |
commit | 9fd6770b1ba6e44c9f36a6142d297ec28f504c72 (patch) | |
tree | 2f9c182cc7d7aea8faccb42e0bec58a1ceac7f49 | |
parent | 5d66df87c52e17c75be0a08c836d4b007d439d86 (diff) |
fixes a typo
-rwxr-xr-x | src/ruby/bin/math_client.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/bin/math_client.rb b/src/ruby/bin/math_client.rb index 195406c8b3..7e838e23d1 100755 --- a/src/ruby/bin/math_client.rb +++ b/src/ruby/bin/math_client.rb @@ -83,7 +83,7 @@ def do_div_many(stub) logger.info('-------------') reqs = [] reqs << Math::DivArgs.new(dividend: 7, divisor: 3) - reqs << Math::Di5AvArgs.new(dividend: 5, divisor: 2) + reqs << Math::DivArgs.new(dividend: 5, divisor: 2) reqs << Math::DivArgs.new(dividend: 7, divisor: 2) logger.info("div(7/3), div(5/2), div(7/2): reqs=#{reqs.inspect}") resp = stub.div_many(reqs, 10) |