aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby/README.md
diff options
context:
space:
mode:
authorGravatar Michael Lumish <mlumish@google.com>2016-10-20 16:48:07 -0700
committerGravatar GitHub <noreply@github.com>2016-10-20 16:48:07 -0700
commit2a78d3d9614279df0d4874bc2f7c25f997143050 (patch)
tree3dc3c6f5415e561cb97c1a603f5523539746896e /src/ruby/README.md
parent13905ee9bbaca90061a3327f92673658d67ecba1 (diff)
parente898ee608cf3a989675aa5fcc18188f322246b50 (diff)
Merge pull request #7838 from teodor-pripoae/fix-example-in-ruby-readme
Fix example in ruby readme
Diffstat (limited to 'src/ruby/README.md')
-rw-r--r--src/ruby/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ruby/README.md b/src/ruby/README.md
index f476fe72be..266d6b2c16 100644
--- a/src/ruby/README.md
+++ b/src/ruby/README.md
@@ -59,7 +59,7 @@ Directory structure is the layout for [ruby extensions][]
- bin: example gRPC clients and servers, e.g,
```ruby
- stub = Math::Math::Stub.new('my.test.math.server.com:8080')
+ stub = Math::Math::Stub.new('my.test.math.server.com:8080', :this_channel_is_insecure)
req = Math::DivArgs.new(dividend: 7, divisor: 3)
GRPC.logger.info("div(7/3): req=#{req.inspect}")
resp = stub.div(req)