From f612746b97fc8c91db12c40426ceaa82045ae749 Mon Sep 17 00:00:00 2001 From: Carl Mastrangelo Date: Thu, 3 Sep 2015 14:01:36 -0700 Subject: [PATCH] Update comment in MethodDescriptor.Marshaller --- core/src/main/java/io/grpc/MethodDescriptor.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/io/grpc/MethodDescriptor.java b/core/src/main/java/io/grpc/MethodDescriptor.java index 65a279adb2..71b9093174 100644 --- a/core/src/main/java/io/grpc/MethodDescriptor.java +++ b/core/src/main/java/io/grpc/MethodDescriptor.java @@ -104,7 +104,8 @@ public class MethodDescriptor { } /** - * A typed abstraction over message parsing and serialization. + * A typed abstraction over message serialization and deserialization, a.k.a. marshalling and + * unmarshalling. * *

Stub implementations will define implementations of this interface for each of the request * and response messages provided by a service.