From 2f5b654b3f3c1b6fede5f9269a22796b7a6255bb Mon Sep 17 00:00:00 2001 From: makoto-developer <72484465+makoto-developer@users.noreply.github.com> Date: Sun, 26 Jul 2026 11:11:29 +0900 Subject: [PATCH] docs: fix "receving" typo in Codec moduledoc --- grpc_core/lib/grpc/codec.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc_core/lib/grpc/codec.ex b/grpc_core/lib/grpc/codec.ex index e6930c267..33bd4019a 100644 --- a/grpc_core/lib/grpc/codec.ex +++ b/grpc_core/lib/grpc/codec.ex @@ -19,7 +19,7 @@ defmodule GRPC.Codec do This function is invoked before the gRPC payload is transformed into a protobuf message whenever it is defined. This can be used to apply a transform over the gRPC message before decoding it. For instance grpc-web using the `application/grpc-web-text` - content type requires the message to be Base64-encoded, so a server receving messages using grpc-web-text will be required to + content type requires the message to be Base64-encoded, so a server receiving messages using grpc-web-text will be required to do a Base64 decode on the payload before decoding the gRPC message. """ @callback unpack_from_channel(binary) :: binary