aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/proto
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-03 16:41:50 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2016-06-06 13:22:42 -0700
commite1bee5bd599396aa3c1171ef2b5af20deff58ee5 (patch)
tree1a0aa02f2454c0ca622bd217b49d5b921a3377d4 /src/proto
parent49fb84ab643fd1a676c526482b6e3960046262b9 (diff)
improve comments in math.proto
Diffstat (limited to 'src/proto')
-rw-r--r--src/proto/math/math.proto6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/proto/math/math.proto b/src/proto/math/math.proto
index 311e148c02..269c60bde8 100644
--- a/src/proto/math/math.proto
+++ b/src/proto/math/math.proto
@@ -55,8 +55,8 @@ message FibReply {
}
service Math {
- // Div divides args.dividend by args.divisor and returns the quotient and
- // remainder.
+ // Div divides DivArgs.dividend by DivArgs.divisor and returns the quotient
+ // and remainder.
rpc Div (DivArgs) returns (DivReply) {
}
@@ -67,7 +67,7 @@ service Math {
rpc DivMany (stream DivArgs) returns (stream DivReply) {
}
- // Fib generates numbers in the Fibonacci sequence. If args.limit > 0, Fib
+ // Fib generates numbers in the Fibonacci sequence. If FibArgs.limit > 0, Fib
// generates up to limit numbers; otherwise it continues until the call is
// canceled. Unlike Fib above, Fib has no final FibReply.
rpc Fib (FibArgs) returns (stream Num) {