From f782504cf0efcb32083584473c5edc74bb127f5b Mon Sep 17 00:00:00 2001 From: AJ Foster <2789166+aj-foster@users.noreply.github.com> Date: Wed, 13 May 2026 19:13:15 -0400 Subject: [PATCH] Fix typing of RPCError --- grpc_core/lib/grpc/rpc_error.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/grpc_core/lib/grpc/rpc_error.ex b/grpc_core/lib/grpc/rpc_error.ex index f0766e7a..9f0a16e4 100644 --- a/grpc_core/lib/grpc/rpc_error.ex +++ b/grpc_core/lib/grpc/rpc_error.ex @@ -58,7 +58,7 @@ defmodule GRPC.RPCError do @type t :: %__MODULE__{ status: GRPC.Status.t(), message: String.t(), - details: [Google.Protobuf.Any.t()] + details: [Google.Protobuf.Any.t()] | nil } alias GRPC.Status