aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/ruby
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-03-24 10:41:37 -0700
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-03-24 10:41:37 -0700
commit4364ded9b16c5a0e1259af7423780c254d0465e6 (patch)
treefc688d1f7f1005530e62df12293ef0dc2f3c252f /src/ruby
parent8d8dce8db31dc9f54f606417ed6bc1ec93f9d76b (diff)
wording fix in comments
Diffstat (limited to 'src/ruby')
-rwxr-xr-xsrc/ruby/end2end/killed_client_thread_driver.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ruby/end2end/killed_client_thread_driver.rb b/src/ruby/end2end/killed_client_thread_driver.rb
index 2963a287c5..f76d3e1746 100755
--- a/src/ruby/end2end/killed_client_thread_driver.rb
+++ b/src/ruby/end2end/killed_client_thread_driver.rb
@@ -32,7 +32,7 @@
require_relative './end2end_common'
# Service that sleeps for a long time upon receiving an 'echo request'
-# Also, this notified @call_started_cv once it has received a request.
+# Also, this notifies @call_started_cv once it has received a request.
class SleepingEchoServerImpl < Echo::EchoServer::Service
def initialize(call_started, call_started_mu, call_started_cv)
@call_started = call_started
@@ -84,7 +84,7 @@ def main
call_started_cv.wait(call_started_mu) until call_started.val
end
- # SIGINT the child process not that it's
+ # SIGINT the child process now that it's
# in the middle of an RPC (happening on a non-main thread)
Process.kill('SIGINT', client_pid)
STDERR.puts 'sent shutdown'