Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion grpc_core/lib/grpc/codec.ex
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Loading